Skip to content

Commit

Permalink
Part1 - Allow Gui,+LastFound `n hwnd:=WinExist()
Browse files Browse the repository at this point in the history
  • Loading branch information
RaptorOne committed Apr 3, 2011
1 parent f28470b commit 409ef78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rusty/Cores/Gui/Gui.cs
Expand Up @@ -288,8 +288,8 @@ public static void Gui(string Command, string Param2, string Param3, string Para
case Keyword_Border: break;
case Keyword_Caption: break;
case Keyword_Disabled: guis[id].Enabled = !on; break;
case Keyword_LastFound: break;
case Keyword_LastFoundExist: break;
case Keyword_LastFound: lastFoundForm = guis[id].Handle.ToInt64(); break;
case Keyword_LastFoundExist: lastFoundForm = guis[id].Handle.ToInt64(); break;
case Keyword_MaximizeBox: guis[id].MaximizeBox = on; break;
case Keyword_MinimizeBox: guis[id].MinimizeBox = on; break;
case Keyword_OwnDialogs: dialogOwner = guis[id]; break;
Expand Down

0 comments on commit 409ef78

Please sign in to comment.