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/windows/chatwindow.cpp | |
parent | 6d95f9aeff5dcfc791520e0ffb10cc34ecc348a0 (diff) | |
download | plus-03f4d4beaaa2ea4ac99aa746460283d4ca644a3f.tar.gz plus-03f4d4beaaa2ea4ac99aa746460283d4ca644a3f.tar.bz2 plus-03f4d4beaaa2ea4ac99aa746460283d4ca644a3f.tar.xz plus-03f4d4beaaa2ea4ac99aa746460283d4ca644a3f.zip |
Remove default parameters from dropdown.
Diffstat (limited to 'src/gui/windows/chatwindow.cpp')
-rw-r--r-- | src/gui/windows/chatwindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/windows/chatwindow.cpp b/src/gui/windows/chatwindow.cpp index 9eb01a3ad..b3d1679a2 100644 --- a/src/gui/windows/chatwindow.cpp +++ b/src/gui/windows/chatwindow.cpp @@ -107,7 +107,8 @@ ChatWindow::ChatWindow(const std::string &name) : mCustomWords(), mTradeFilter(), mColorListModel(new ColorListModel), - mColorPicker(new DropDown(this, mColorListModel)), + mColorPicker(new DropDown(this, mColorListModel, + false, Modal_false, nullptr, std::string())), mChatButton(new Button(this, ":)", "openemote", this)), mAwayLog(), mHighlights(), |