mirror of
https://github.com/elementary/gala.git
synced 2024-11-24 04:21:04 +03:00
1970bac81e
* Use separate process to create window menus * Reduce line count with code style changes * Fix some formatting * Code style fixes * Prevent menu closing instantly after open * Resolve warnings in new code * Remove GLib namespace prefix from exceptions * Update main.vala * Remove timeout by positioning the menu outside of the mouse pos * daemon: Use lambda as popup callback * io.elementary.gala -> org.pantheon.gala * org.pantheon.gala.daemon -> gala-daemon * Clean up * Fix daemon object path * Some cleaning
12 lines
193 B
Meson
12 lines
193 B
Meson
gala_daemon_sources = files(
|
|
'Main.vala',
|
|
'MenuDaemon.vala'
|
|
)
|
|
|
|
gala_daemon_bin = executable(
|
|
'gala-daemon',
|
|
gala_daemon_sources,
|
|
dependencies: [gala_dep, gala_base_dep],
|
|
install: true,
|
|
)
|