GUI: hide the tree window if a different algo is chosen

This commit is contained in:
hasufell 2014-11-16 00:29:07 +01:00
parent febb20928c
commit 84bfeb27e0
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020

View File

@ -189,7 +189,9 @@ onAlgoBoxChange mygui = do
then do then do
widgetShow (vbox7 mygui) widgetShow (vbox7 mygui)
widgetShow (treeWin mygui) widgetShow (treeWin mygui)
else widgetHide (vbox7 mygui) else do
widgetHide (vbox7 mygui)
widgetHide (treeWin mygui)
return () return ()