forgot to set mapping=TRUE while setting up behavior tab
authorDana Jansens <danakj@orodu.net>
Thu, 31 May 2007 07:01:32 +0000 (07:01 +0000)
committerDana Jansens <danakj@orodu.net>
Thu, 31 May 2007 07:01:32 +0000 (07:01 +0000)
src/behavior.c

index 08a0533c127fc5f950f7482d32a10abc05d4c9c6..8e09ba6f8718a044d0b3c7730a7e3b706a41f49a 100644 (file)
@@ -30,6 +30,8 @@ void behavior_setup_tab()
     GtkSizeGroup *group;
     gchar *s;
 
+    mapping = TRUE;
+
     winresist  = get_widget("resist_window");
     edgeresist = get_widget("resist_edge");
     group      = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
@@ -80,6 +82,8 @@ void behavior_setup_tab()
     gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(w),
                                  !g_ascii_strcasecmp(s, "UnderMouse"));
     g_free(s);
+
+    mapping = FALSE;
 }
 
 static void behavior_enable_stuff()