Browse Source

Now use SearchEntry instead of Entry in SelectionDialog

pipelines/143601543
eidheim 6 years ago
parent
commit
4dc8021ea9
  1. 6
      src/selection_dialog.h

6
src/selection_dialog.h

@ -29,10 +29,10 @@ class SelectionDialogBase {
unsigned int size = 0; unsigned int size = 0;
}; };
class SearchEntry : public Gtk::Entry { class SearchEntry : public Gtk::SearchEntry {
public: public:
SearchEntry() : Gtk::Entry() {} SearchEntry() : Gtk::SearchEntry() {}
bool on_key_press_event(GdkEventKey *event) override { return Gtk::Entry::on_key_press_event(event); }; bool on_key_press_event(GdkEventKey *event) override { return Gtk::SearchEntry::on_key_press_event(event); };
}; };
public: public:

Loading…
Cancel
Save