diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-26 21:50:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-26 21:50:46 +0300 |
commit | 03f4d4beaaa2ea4ac99aa746460283d4ca644a3f (patch) | |
tree | e60a1fd194180fea9dd37553c97ab2e28f4cdfc7 /src/gui/widgets/setuptouchitem.cpp | |
parent | 6d95f9aeff5dcfc791520e0ffb10cc34ecc348a0 (diff) | |
download | mv-03f4d4beaaa2ea4ac99aa746460283d4ca644a3f.tar.gz mv-03f4d4beaaa2ea4ac99aa746460283d4ca644a3f.tar.bz2 mv-03f4d4beaaa2ea4ac99aa746460283d4ca644a3f.tar.xz mv-03f4d4beaaa2ea4ac99aa746460283d4ca644a3f.zip |
Remove default parameters from dropdown.
Diffstat (limited to 'src/gui/widgets/setuptouchitem.cpp')
-rw-r--r-- | src/gui/widgets/setuptouchitem.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gui/widgets/setuptouchitem.cpp b/src/gui/widgets/setuptouchitem.cpp index 122853c7e..13580c222 100644 --- a/src/gui/widgets/setuptouchitem.cpp +++ b/src/gui/widgets/setuptouchitem.cpp @@ -95,7 +95,12 @@ void SetupActionDropDown::createControls() mLabel = new Label(this, mText); mLabel->setToolTip(mDescription); - mDropDown = new DropDown(this, mModel); + mDropDown = new DropDown(this, + mModel, + false, + Modal_false, + nullptr, + std::string()); mDropDown->setActionEventId(mEventName); mDropDown->addActionListener(mParent); mDropDown->setWidth(mWidth); |