From fabfbff17ffca9ffbec69640469b728f5e149325 Mon Sep 17 00:00:00 2001 From: Robert Ancell Date: Thu, 15 Sep 2016 08:53:16 +0000 Subject: Work around Vala trying to use a new GTK 3.20 function. --- src/fixes.vapi | 2 ++ src/main-window.vala | 2 +- src/prompt-box.vala | 2 +- src/shutdown-dialog.vala | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/fixes.vapi b/src/fixes.vapi index 3cbae7a..3834690 100644 --- a/src/fixes.vapi +++ b/src/fixes.vapi @@ -32,6 +32,8 @@ namespace Gtk // Fixed in Vala 0.24 public void to_hsv (double r, double g, double b, out double h, out double s, out double v); } + + public void button_set_focus_on_click (Gtk.Button button, bool focus_on_click); } // Note, fixed in 1.10.0 diff --git a/src/main-window.vala b/src/main-window.vala index 74e2c5b..6dfd168 100644 --- a/src/main-window.vala +++ b/src/main-window.vala @@ -114,7 +114,7 @@ public class MainWindow : Gtk.Window back_button = new FlatButton (); back_button.get_accessible ().set_name (_("Back")); - back_button.focus_on_click = false; + Gtk.button_set_focus_on_click (back_button, false); var image = new Gtk.Image.from_file (Path.build_filename (Config.PKGDATADIR, "arrow_left.png", null)); image.show (); back_button.set_size_request (grid_size - GreeterList.BORDER * 2, grid_size - GreeterList.BORDER * 2); diff --git a/src/prompt-box.vala b/src/prompt-box.vala index e77e0d6..419f56d 100644 --- a/src/prompt-box.vala +++ b/src/prompt-box.vala @@ -207,7 +207,7 @@ public class PromptBox : FadableBox option_button.valign = Gtk.Align.START; // Keep as much space on top as on the right option_button.margin_top = ActiveIndicator.WIDTH + box_grid.column_spacing; - option_button.focus_on_click = false; + Gtk.button_set_focus_on_click (option_button, false); option_button.relief = Gtk.ReliefStyle.NONE; option_button.get_accessible ().set_name (_("Session Options")); option_button.clicked.connect (option_button_clicked_cb); diff --git a/src/shutdown-dialog.vala b/src/shutdown-dialog.vala index bf0a2b4..79e102d 100644 --- a/src/shutdown-dialog.vala +++ b/src/shutdown-dialog.vala @@ -548,7 +548,7 @@ private class DialogButton : Gtk.Button this.focused_filename = focused_filename; this.active_filename = active_filename; relief = Gtk.ReliefStyle.NONE; - focus_on_click = false; + Gtk.button_set_focus_on_click (this, false); i = new Gtk.Image.from_file (inactive_filename); i.visible = true; add (i); -- cgit v1.2.3