Skip to content

Commit

Permalink
refactor: Use ApplicationFlags.DEFAULT_FLAGS (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryonakano authored May 12, 2024
1 parent 30f168f commit a608d6a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ flatpak run com.github.ryonakano.reco.Devel
You'll need the following dependencies to build:

* libgee-0.8-dev
* libglib2.0-dev (>= 2.74)
* libgranite-7-dev
* libgstreamer1.0-dev (>= 1.20)
* libgtk-4-dev (>= 4.10)
Expand Down
2 changes: 1 addition & 1 deletion src/Application.vala
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class Application : Gtk.Application {
public Application () {
Object (
application_id: Config.APP_ID,
flags: ApplicationFlags.FLAGS_NONE,
flags: ApplicationFlags.DEFAULT_FLAGS,
resource_base_path: Config.RESOURCE_PREFIX
);
}
Expand Down
3 changes: 2 additions & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ config_file = configure_file(

dependencies = [
dependency('gee-0.8'),
dependency('glib-2.0', version: '>= 2.74'),
dependency('granite-7'),
dependency('gstreamer-1.0', version: '>= 1.20'),
dependency('gtk4', version: '>= 4.10'),
dependency('pango')
dependency('pango'),
]

sources = files(
Expand Down

0 comments on commit a608d6a

Please sign in to comment.