summaryrefslogtreecommitdiff
path: root/plugingui/plugingui.cc
diff options
context:
space:
mode:
Diffstat (limited to 'plugingui/plugingui.cc')
-rw-r--r--plugingui/plugingui.cc13
1 files changed, 3 insertions, 10 deletions
diff --git a/plugingui/plugingui.cc b/plugingui/plugingui.cc
index ea0e4ad..7e4bb59 100644
--- a/plugingui/plugingui.cc
+++ b/plugingui/plugingui.cc
@@ -178,11 +178,12 @@ void PluginGUI::init()
// printf("%p\n", eventhandler);
window = new GUI::Window(gctx);
window->resize(640, 200);
-
+ window->setCaption("DrumGizmo v"VERSION);
+
// Enable Velocity
check = new GUI::CheckBox(window);
check->setText("Enable Velocity Modifier");
- check->move(210,82);
+ check->move(215,82);
check->resize(200,16);
check->setChecked(Conf::enable_velocity_modifier);
check->registerClickHandler(checkClick, this);
@@ -266,14 +267,6 @@ void PluginGUI::init()
btn_brw->registerClickHandler(midimapBrowseClick, this);
}
- /*
- btn_cancel = new GUI::Button(window);
- btn_cancel->setText("Close");
- btn_cancel->move(520, 160);
- btn_cancel->resize(100, 20);
- btn_cancel->registerClickHandler(closeClick, this);
- */
-
GUI::Label *lbl3 = new GUI::Label(window);
lbl3->setText("v"VERSION);
lbl3->move(120, 180);