diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-01-18 08:20:13 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-01-18 08:20:13 +0100 |
commit | f900ffb5c737064f9c0b2d5eecf6b325fa0ba21d (patch) | |
tree | 2fc5f9e9150b755a5c9339f926d21254803fea92 /variant/default/main-window.cpp | |
parent | 81d378f9c550f7f1be292af65a8586bb8f769c4c (diff) |
fix selecting no filter
Diffstat (limited to 'variant/default/main-window.cpp')
-rw-r--r-- | variant/default/main-window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/variant/default/main-window.cpp b/variant/default/main-window.cpp index 9f050d71..8edf9f33 100644 --- a/variant/default/main-window.cpp +++ b/variant/default/main-window.cpp @@ -64,7 +64,7 @@ main_window::main_window() : State(OPENTRACK_BASE_PATH + OPENTRACK_LIBRARY_PATH) // fill dylib comboboxen { - modules.filters().push_front(std::make_shared<dylib>(QString(), dylib::Filter)); + modules.filters().push_front(std::make_shared<dylib>("", dylib::Filter)); for (dylib_ptr& x : modules.trackers()) ui.iconcomboTrackerSource->addItem(x->icon, x->name, x->module_name); |