mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
Force information window to top
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
- Handle invalid characters when changing program
|
||||
- Fix options not saving on update
|
||||
- Combine build scripts
|
||||
- Force information window to top
|
||||
|
||||
### 2.6.4 (2023-09-25)
|
||||
|
||||
|
||||
@@ -119,7 +119,7 @@ namespace MPF.Core.Data
|
||||
/// <remarks>This is a hidden setting</remarks>
|
||||
public bool ShowDebugViewMenuItem
|
||||
{
|
||||
get { return GetBooleanSetting(_settings, "ShowDebugViewMenuItem", false); }
|
||||
get { return GetBooleanSetting(_settings, "ShowDebugViewMenuItem", true); }
|
||||
set { _settings["ShowDebugViewMenuItem"] = value.ToString(); }
|
||||
}
|
||||
|
||||
|
||||
@@ -1247,6 +1247,7 @@ namespace MPF.UI.Core.ViewModels
|
||||
var discInformationWindow = new DiscInformationWindow(this.Options, submissionInfo)
|
||||
{
|
||||
Owner = this.Parent,
|
||||
Topmost = true,
|
||||
WindowStartupLocation = WindowStartupLocation.CenterOwner,
|
||||
};
|
||||
bool? result = discInformationWindow.ShowDialog();
|
||||
|
||||
Reference in New Issue
Block a user