Skip to content

Commit

Permalink
build: Always render light GTK2 assets
Browse files Browse the repository at this point in the history
For GTK2, building just the dark variant fails if the
'light_menubar_toolbar_assets' are not rendered.

#122
  • Loading branch information
tony-traylen authored and jnsh committed Apr 4, 2021
1 parent 677e82a commit f896a94
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions common/gtk-2.0/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@ gtk2_asset_names = run_command(
check : true
).stdout().split()

if 'light' in get_option('variants') or 'lighter' in get_option('variants')
subdir('light')
endif

subdir('light')
if 'dark' in get_option('variants') or 'darker' in get_option('variants')
subdir('dark')
endif
Expand Down

0 comments on commit f896a94

Please sign in to comment.