From 960ed3806d00b33b6a254fb583b366177ba56b77 Mon Sep 17 00:00:00 2001 From: Trent McPheron Date: Sun, 6 Sep 2015 18:24:33 -0400 Subject: [PATCH] Oops, didn't fix the pref dialog all the way. :x --- src/preferences.vala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/preferences.vala b/src/preferences.vala index 0f3f786..70246c1 100755 --- a/src/preferences.vala +++ b/src/preferences.vala @@ -122,7 +122,7 @@ class PrefDialog : Dialog { content.pack_start(color_frame); content.pack_start(image_frame); content.pack_start(size_box); - add_button(Stock.APPLY, ResponseType.CLOSE); + add_button(Stock.CLOSE, ResponseType.CLOSE); // Set initial values. bottom_radio.active = plugin.orient == "bottom" || @@ -137,6 +137,7 @@ class PrefDialog : Dialog { alpha_scale.set_value(plugin.alpha); image_button.set_filename(plugin.image); offset_spin.value = plugin.offset; + max_size_spin.value = plugin.max_size; expand_check.active = plugin.expand; // Signals, yo.