Workaround groups Enabled flag not getting applied in mono winforms implementation

This commit is contained in:
Magnus Norddahl 2020-09-12 02:15:21 +02:00
parent efec88994b
commit 30c2ad22ea
2 changed files with 6 additions and 0 deletions

View file

@ -87,6 +87,9 @@ namespace CodeImp.DoomBuilder.Windows
{
// Initialize
InitializeComponent();
#if MONO_WINFORMS
frontgroup.Enabled = true;
#endif
// Fill flags lists
foreach(KeyValuePair<string, string> lf in General.Map.Config.LinedefFlags)

View file

@ -135,6 +135,9 @@ namespace CodeImp.DoomBuilder.Windows
{
// Initialize
InitializeComponent();
#if MONO_WINFORMS
frontgroup.Enabled = true;
#endif
// Widow setup
if(General.Settings.StoreSelectedEditTab)