diff options
Diffstat (limited to 'testing/gnome-disk-utility/exp2.patch')
-rw-r--r-- | testing/gnome-disk-utility/exp2.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/testing/gnome-disk-utility/exp2.patch b/testing/gnome-disk-utility/exp2.patch deleted file mode 100644 index 4499803628..0000000000 --- a/testing/gnome-disk-utility/exp2.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- ./src/gdu-gtk/gdu-size-widget.c.orig -+++ ./src/gdu-gtk/gdu-size-widget.c -@@ -564,11 +564,11 @@ - - shown_extent = extent / unit_factor; - -- increment = (exp10 (floor (log10 (shown_extent))) / 10.0) * unit_factor; -+ increment = (exp2 (floor (log2 (shown_extent))) / 2.0) * unit_factor; - - gtk_range_set_increments (GTK_RANGE (widget->priv->hscale), - increment, -- increment * 10.0); -+ increment * 2.0); - } - - |