aboutsummaryrefslogtreecommitdiff
path: root/src/idoscalemenuitem.c
diff options
context:
space:
mode:
authorLars Uebernickel <lars.uebernickel@canonical.com>2012-03-16 15:45:42 +0100
committerLars Uebernickel <lars.uebernickel@canonical.com>2012-03-16 15:45:42 +0100
commitdde83216598b3ff17340cba41dece446c6172fa1 (patch)
tree53e9d9154e29677ff589a0a4b4741ad0d2db636f /src/idoscalemenuitem.c
parent6a6e63c0f10c03a7e3c0f8f132051c65210da29b (diff)
downloadayatana-ido-dde83216598b3ff17340cba41dece446c6172fa1.tar.gz
ayatana-ido-dde83216598b3ff17340cba41dece446c6172fa1.tar.bz2
ayatana-ido-dde83216598b3ff17340cba41dece446c6172fa1.zip
Remove slider mouse button hack
This should be a global setting for all sliders and fixed in gtk.
Diffstat (limited to 'src/idoscalemenuitem.c')
-rw-r--r--src/idoscalemenuitem.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/idoscalemenuitem.c b/src/idoscalemenuitem.c
index 4b60b8b..499c28f 100644
--- a/src/idoscalemenuitem.c
+++ b/src/idoscalemenuitem.c
@@ -217,21 +217,6 @@ ido_scale_menu_item_toggle_size_allocate (IdoScaleMenuItem *item,
priv->toggle_size = toggle_size;
}
-static gboolean
-on_scale_button_press_or_release_event (GtkWidget * widget G_GNUC_UNUSED,
- GdkEventButton * event,
- gpointer unused G_GNUC_UNUSED)
-{
- /* HACK: we want the behaviour you get with the middle button, so we
- * mangle the event. clicking with other buttons moves the slider in
- * step increments, clicking with the middle button moves the slider to
- * the location of the click. */
- if (event->button == 1)
- event->button = 2;
-
- return FALSE;
-}
-
static void
ido_scale_menu_item_constructed (GObject *object)
{
@@ -250,12 +235,7 @@ ido_scale_menu_item_constructed (GObject *object)
priv->scale = ido_range_new (adj, range_style);
g_object_ref (priv->scale);
gtk_scale_set_draw_value (GTK_SCALE (priv->scale), FALSE);
- g_signal_connect (G_OBJECT (priv->scale), "button-press-event",
- G_CALLBACK (on_scale_button_press_or_release_event), NULL);
- g_signal_connect (G_OBJECT (priv->scale), "button-release-event",
- G_CALLBACK (on_scale_button_press_or_release_event), NULL);
-
#ifdef USE_GTK3
hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
#else