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/prompt-box.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/prompt-box.vala') 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); -- cgit v1.2.3