summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRui Matos <tiagomatos@gmail.com>2015-05-06 18:40:52 +0200
committerRui Matos <tiagomatos@gmail.com>2015-06-29 16:37:35 +0200
commit2853e94433ea23cbcd9f5418d6efd375f5dc65ed (patch)
tree2e545f43cf5bbf1874c5f3ffb8b559ab2ffbf36d
parent7f9e9f0c66c5b686ae8cf235849465d9c07fda2f (diff)
downloadgnome-screenshot-2853e94433ea23cbcd9f5418d6efd375f5dc65ed.tar.gz
interactive-dialog: Add a missing break on a switch statement
Otherwise if the border effect gsetting is vintage the combo box will show up as none. https://bugzilla.gnome.org/show_bug.cgi?id=749028
-rw-r--r--src/screenshot-interactive-dialog.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/screenshot-interactive-dialog.c b/src/screenshot-interactive-dialog.c
index 61692a7..ce38056 100644
--- a/src/screenshot-interactive-dialog.c
+++ b/src/screenshot-interactive-dialog.c
@@ -204,6 +204,7 @@ create_effects_combo (void)
case 'v': /* vintage */
gtk_combo_box_set_active (GTK_COMBO_BOX (retval),
SCREENSHOT_EFFECT_VINTAGE);
+ break;
case 'n': /* none */
gtk_combo_box_set_active (GTK_COMBO_BOX (retval),
SCREENSHOT_EFFECT_NONE);