From 87715f3fa7afcc84585cfa45f9d2e36af191c6f3 Mon Sep 17 00:00:00 2001 From: Robert Tari Date: Thu, 4 Apr 2024 01:09:22 +0200 Subject: src/idoscalemenuitem.c: Make page increment same as step increment --- src/idoscalemenuitem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/idoscalemenuitem.c b/src/idoscalemenuitem.c index 37a9385..baad442 100644 --- a/src/idoscalemenuitem.c +++ b/src/idoscalemenuitem.c @@ -1,6 +1,6 @@ /* * Copyright 2010 Canonical, Ltd. - * Copyright 2021 Robert Tari + * Copyright 2021-2024 Robert Tari * * This program is free software: you can redistribute it and/or modify it * under the terms of either or both of the following licenses: @@ -701,7 +701,7 @@ ido_scale_menu_item_new_with_range (const gchar *label, gdouble max, gdouble step) { - GObject *adjustment = G_OBJECT (gtk_adjustment_new (value, min, max, step, 10 * step, 0)); + GObject *adjustment = G_OBJECT (gtk_adjustment_new (value, min, max, step, step, 0)); return GTK_WIDGET (g_object_new (IDO_TYPE_SCALE_MENU_ITEM, "label", label, -- cgit v1.2.3