mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-01-31 12:50:52 +00:00
Workaround groups Enabled flag not getting applied in mono winforms implementation
This commit is contained in:
parent
efec88994b
commit
30c2ad22ea
2 changed files with 6 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -135,6 +135,9 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
{
|
||||
// Initialize
|
||||
InitializeComponent();
|
||||
#if MONO_WINFORMS
|
||||
frontgroup.Enabled = true;
|
||||
#endif
|
||||
|
||||
// Widow setup
|
||||
if(General.Settings.StoreSelectedEditTab)
|
||||
|
|
Loading…
Reference in a new issue