Skip to content

Commit

Permalink
Merge #3489 Theme all buttons, checkboxes, groupboxes, and listboxes
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Dec 4, 2021
2 parents 72f77bd + 53dae24 commit 18d5030
Show file tree
Hide file tree
Showing 18 changed files with 66 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ All notable changes to this project will be documented in this file.
- [GUI] Suppress incompatibility warning at game launch (#3453 by: HebaruSan; reviewed: DasSkelett)
- [CLI] Options for ckan show to hide sections (#3461 by: HebaruSan; reviewed: DasSkelett)
- [Multiple] Show context menu on menu key press (#3446 by: HebaruSan; reviewed: DasSkelett)
- [GUI] Theme all buttons, checkboxes, groupboxes, and listboxes (#3489 by: HebaruSan; reviewed: DasSkelett)

### Bugfixes

Expand Down
3 changes: 2 additions & 1 deletion GUI/Controls/EditModSearches.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions GUI/Controls/ManageMods.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions GUI/Controls/ModInfo.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added GUI/DarkTheme.reg
Binary file not shown.
Binary file added GUI/DefaultTheme.reg
Binary file not shown.
2 changes: 2 additions & 0 deletions GUI/Dialogs/AskUserForAutoUpdatesDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions GUI/Dialogs/CloneFakeGameDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions GUI/Dialogs/CompatibleGameVersionsDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion GUI/Dialogs/CompatibleGameVersionsDialog.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Linq;
using System.IO;
using System.Windows.Forms;
using System.Collections.Generic;
using Autofac;
Expand Down Expand Up @@ -30,7 +31,7 @@ public CompatibleGameVersionsDialog(GameInstance inst, bool centerScreen)
List<GameVersion> compatibleVersions = inst.GetCompatibleVersions();

GameVersionLabel.Text = inst.Version()?.ToString() ?? Properties.Resources.CompatibleGameVersionsDialogNone;
GameLocationLabel.Text = inst.GameDir();
GameLocationLabel.Text = inst.GameDir().Replace('/', Path.DirectorySeparatorChar);
List<GameVersion> knownVersions = inst.game.KnownVersions;
List<GameVersion> majorVersionsList = CreateMajorVersionsList(knownVersions);
List<GameVersion> compatibleVersionsLeftOthers = new List<GameVersion>(compatibleVersions);
Expand Down
13 changes: 13 additions & 0 deletions GUI/Dialogs/EditLabelsDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions GUI/Dialogs/ManageGameInstancesDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion GUI/Dialogs/NewRepoDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 18d5030

Please sign in to comment.