commit 5f38b94d5c6e299eb8b7a8d1543ca643defb1de8
parent 1fe203f9bcfb9cda69962fd26e288df297708602
Author: falkTX <falktx@gmail.com>
Date: Fri, 8 Jan 2016 06:51:40 +0000
Disable main settings group when running as plugin
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/UI/ConfigUI.fl b/src/UI/ConfigUI.fl
@@ -68,7 +68,7 @@ class ConfigUI {} {
Fl_Tabs {} {
xywh {5 5 500 330}
} {
- Fl_Group {} {
+ Fl_Group mainsettings {
label {Main settings}
xywh {5 25 500 310}
} {
@@ -317,6 +317,9 @@ activatebutton_presetdir(true);}
}
Function {show()} {} {
code {
+if (isPlugin) {
+ mainsettings->deactivate();
+}
rootsbrowse->update();
presetbrowse->update();
configwindow->show();