Browse Source

Fix multiple instances mistake

merge-requests/365/head
Jørgen Lien Sellæg 10 years ago
parent
commit
b106999fe8
  1. 2
      src/juci.cc

2
src/juci.cc

@ -47,7 +47,7 @@ void app::on_activate() {
window->notebook.open(f); window->notebook.open(f);
} }
app::app() : Gtk::Application("no.sout.juci", Gio::APPLICATION_HANDLES_COMMAND_LINE) { app::app() : Gtk::Application("no.sout.juci", Gio::APPLICATION_NON_UNIQUE | Gio::APPLICATION_HANDLES_COMMAND_LINE) {
MainConfig(); // Read the configs here MainConfig(); // Read the configs here
auto css_provider = Gtk::CssProvider::get_default(); auto css_provider = Gtk::CssProvider::get_default();
auto style_context = Gtk::StyleContext::create(); auto style_context = Gtk::StyleContext::create();

Loading…
Cancel
Save