diff --git a/TuneLab/App.axaml b/TuneLab/App.axaml index 28dd55d..d9d5051 100644 --- a/TuneLab/App.axaml +++ b/TuneLab/App.axaml @@ -6,6 +6,7 @@ + avares://TuneLab/Assets/Fonts#NotoMono diff --git a/TuneLab/Assets/GlobalStyle.axaml b/TuneLab/Assets/GlobalStyle.axaml new file mode 100644 index 0000000..cd091a3 --- /dev/null +++ b/TuneLab/Assets/GlobalStyle.axaml @@ -0,0 +1,21 @@ + + + + + + + + + diff --git a/TuneLab/Views/MainWindow.axaml b/TuneLab/Views/MainWindow.axaml index 06898d0..9b13432 100644 --- a/TuneLab/Views/MainWindow.axaml +++ b/TuneLab/Views/MainWindow.axaml @@ -11,13 +11,7 @@ ExtendClientAreaTitleBarHeightHint="40" ExtendClientAreaToDecorationsHint="True" SizeChanged="Window_SizeChanged"> - - - - + #272736 diff --git a/TuneLab/Views/TrackSelector.axaml b/TuneLab/Views/TrackSelector.axaml index 30a215c..5671595 100644 --- a/TuneLab/Views/TrackSelector.axaml +++ b/TuneLab/Views/TrackSelector.axaml @@ -38,8 +38,7 @@ - - + diff --git a/TuneLab/Views/TrackSelector.axaml.cs b/TuneLab/Views/TrackSelector.axaml.cs index e10a397..8809193 100644 --- a/TuneLab/Views/TrackSelector.axaml.cs +++ b/TuneLab/Views/TrackSelector.axaml.cs @@ -8,6 +8,7 @@ using TuneLab.GUI; using TuneLab.Utils; using Button = TuneLab.GUI.Components.Button; +using CheckBox = TuneLab.GUI.Components.CheckBox; namespace TuneLab.Views; internal partial class TrackSelector : Window @@ -42,7 +43,7 @@ public TrackSelector() KeepTempoPanel.Orientation = Orientation.Horizontal; KeepTempoPanel.Height = 24; KeepTempoPanel.Children.Add(mKeepTempoCheckBox); - KeepTempoPanel.Children.Add(new Label() { Content = "Keep Tempo", FontSize = 12, Foreground = Style.TEXT_LIGHT.ToBrush(), Margin = new(0, 1) }); + KeepTempoPanel.Children.Add(new Label() { Content = "Keep Tempo", FontSize = 12, Foreground = Style.TEXT_LIGHT.ToBrush(), Margin = new(14, 1) }); ActionsPanel.Children.Add(KeepTempoPanel); Grid.SetColumn(KeepTempoPanel, 0);