remove close buttons from Bundle Manager (rely on WM provided button)

This commit is contained in:
Robin Gareus 2016-08-21 22:58:52 +02:00
parent cd77f7e209
commit 444497b571

View File

@ -218,7 +218,6 @@ BundleEditor::BundleEditor (Session* session, boost::shared_ptr<UserBundle> bund
get_vbox()->pack_start (_matrix);
get_vbox()->set_spacing (4);
add_button (Gtk::Stock::CLOSE, Gtk::RESPONSE_ACCEPT);
show_all ();
signal_key_press_event().connect (sigc::mem_fun (_matrix, &BundleEditorMatrix::key_press));
@ -310,9 +309,6 @@ BundleManager::BundleManager (Session* session)
sigc::mem_fun (*this, &BundleManager::row_activated)
);
Gtk::Button* close_but = add_button (Gtk::Stock::CLOSE, Gtk::RESPONSE_ACCEPT);
close_but->signal_clicked ().connect (sigc::mem_fun (*this, &Gtk::Window::hide));
set_button_sensitivity ();
show_all ();