Skip to content
This repository has been archived by the owner on Jun 11, 2023. It is now read-only.

Commit

Permalink
详见Changelog.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MATRIX-feather committed Jan 10, 2020
1 parent d61cf02 commit a100cbf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,9 @@
* [OsuTabControlCheckbox](osu.Game/Screens/Edit/Components/Menus/EditorMenuBar.cs)
* [PageTabControl](osu.Game/Graphics/UserInterface/PageTabControl.cs)
* [TabControlOverlayHeader](osu.Game/Overlays/TabControlOverlayHeader.cs)
* [EditorMenuBar](osu.Game/Screens/Edit/Components/Menus/EditorMenuBar.cs)
* [EditorMenuBar](osu.Game/Screens/Edit/Components/Menus/EditorMenuBar.cs)
## 2020/1/10:
### 游戏
* 从官方pr处获取的更新
* [#7450 - 修复osu!direct全局按键没有被正确绑定](https://github.com/ppy/osu/pull/7450)
*[direct界面的排行榜](https://dotnet.microsoft.com/download/dotnet-core/current/runtime)的字体增大
1 change: 1 addition & 0 deletions osu.Game/Input/Bindings/GlobalActionContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public GlobalActionContainer(OsuGameBase game)
new KeyBinding(new[] { InputKey.Control, InputKey.Alt, InputKey.R }, GlobalAction.ResetInputSettings),
new KeyBinding(new[] { InputKey.Control, InputKey.T }, GlobalAction.ToggleToolbar),
new KeyBinding(new[] { InputKey.Control, InputKey.O }, GlobalAction.ToggleSettings),
new KeyBinding(new[] { InputKey.Control, InputKey.D }, GlobalAction.ToggleDirect),

new KeyBinding(InputKey.Escape, GlobalAction.Back),
new KeyBinding(InputKey.ExtraMouseButton1, GlobalAction.Back),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public InfoColumn(string title, Drawable content)
{
new OsuSpriteText
{
Font = OsuFont.GetFont(size: 12, weight: FontWeight.Black),
Font = OsuFont.GetFont(size: 16, weight: FontWeight.Black),
Text = title.ToUpper()
},
separator = new Box
Expand Down

0 comments on commit a100cbf

Please sign in to comment.