From d04930d4c3debdb9670340859c1ecdf5046bf861 Mon Sep 17 00:00:00 2001 From: John Jekel Date: Tue, 23 Oct 2018 15:19:21 -0400 Subject: [PATCH] make s in 15Slide lower case package name --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index cd045f9..80d2b0a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -107,7 +107,7 @@ int main(int argc, char *argv[]) if constexpr (GTKSlide::RUNNING_UNINSTALLED) Glib::setenv ("GSETTINGS_SCHEMA_DIR", ".", false); - Glib::RefPtr application = Gtk::Application::create(argc, argv, "io.github.jzjisawesome._15Slide");//give GTK the command line arguments + Glib::RefPtr application = Gtk::Application::create(argc, argv, "io.github.jzjisawesome._15slide");//give GTK the command line arguments //application refrence is needed because get_application returns nullptr sometimes GTKSlide::MainWindow window {application, gameGrid};//give the gameGrid and application to the GUI (may want to move to heap, see below)