Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt to libxfce4windowing v4.19.8 #627

Merged
merged 1 commit into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ dep_canberra = dependency('libcanberra')
dep_canberra_gtk3 = dependency('libcanberra-gtk3')

# Needed for window tracking
dep_xfce4windowing = dependency('libxfce4windowing-0')
dep_xfce4windowing = dependency('libxfce4windowing-0', version: '>= 4.19.7')

# Create config.h
cdata = configuration_data()
Expand Down
2 changes: 1 addition & 1 deletion src/daemon/tabswitcher.vala
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ namespace Budgie {
window_box.unselect_child(current);

try {
tab.window.activate(get_time());
tab.window.activate(null, get_time());
} catch (GLib.Error e) {
warning("Failed to activate window: %s\n", e.message);
}
Expand Down
2 changes: 1 addition & 1 deletion src/panel/applets/workspaces/WindowIcon.vala
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ namespace Workspaces {
if (event.button != 1) return Gdk.EVENT_STOP;

try {
window.activate(event.time);
window.activate(null, event.time);
} catch (Error e) {
warning("Failed to activate window: %s", e.message);
}
Expand Down
Loading
Loading