diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2025-06-05 18:04:34 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2025-06-05 18:04:34 +0200 |
| commit | 54b464b1b5adb6f1b489777ce65e8299d49b8249 (patch) | |
| tree | 80626c3db7cc5806480ea873eb29170171db1399 /gui/src/main.cpp | |
| parent | 4919ee493d16b2baa43a511bfb1c7331413e1d10 (diff) | |
| download | turns-54b464b1b5adb6f1b489777ce65e8299d49b8249.tar.xz turns-54b464b1b5adb6f1b489777ce65e8299d49b8249.zip | |
gui: pass project version to about dialog
Diffstat (limited to 'gui/src/main.cpp')
| -rw-r--r-- | gui/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/src/main.cpp b/gui/src/main.cpp index 0da9364..c23f5d9 100644 --- a/gui/src/main.cpp +++ b/gui/src/main.cpp @@ -30,7 +30,7 @@ namespace auto show_about(Glib::RefPtr<Adwaita::Application> app) { auto active_window = app->get_active_window(); - auto dialog = Gtk::make_managed<Adwaita::AboutDialog>(Turns::gui::resource::metainfo_xml, ""); + auto dialog = Gtk::make_managed<Adwaita::AboutDialog>(Turns::gui::resource::metainfo_xml, TURNS_VERSION_FULL); dialog->present(active_window); } } // namespace |
