[gtk/wip/matthiasc/context-menu] color editor: Fix numerical oddities
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/wip/matthiasc/context-menu] color editor: Fix numerical oddities
- Date: Wed, 12 Jun 2019 01:06:24 +0000 (UTC)
commit f9ffa964188dd29965d2de36c3605879b18f14e7
Author: Matthias Clasen <mclasen redhat com>
Date: Wed Jun 12 00:57:01 2019 +0000
color editor: Fix numerical oddities
This is probably ue to a pass through gtk-builder-tool.
gtk/ui/gtkcoloreditor.ui | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/gtk/ui/gtkcoloreditor.ui b/gtk/ui/gtkcoloreditor.ui
index 2b24dbfd0e..4075102a5e 100644
--- a/gtk/ui/gtkcoloreditor.ui
+++ b/gtk/ui/gtkcoloreditor.ui
@@ -3,25 +3,25 @@
<object class="GtkAdjustment" id="a_adj">
<property name="upper">1</property>
<property name="step-increment">0.01</property>
- <property name="page-increment">0.10000000000000001</property>
+ <property name="page-increment">0.1</property>
<signal name="value-changed" handler="hsv_changed" object="GtkColorEditor" swapped="yes"/>
</object>
<object class="GtkAdjustment" id="h_adj">
<property name="upper">1</property>
<property name="step-increment">0.01</property>
- <property name="page-increment">0.10000000000000001</property>
+ <property name="page-increment">0.1</property>
<signal name="value-changed" handler="hsv_changed" object="GtkColorEditor" swapped="yes"/>
</object>
<object class="GtkAdjustment" id="s_adj">
<property name="upper">1</property>
<property name="step-increment">0.01</property>
- <property name="page-increment">0.10000000000000001</property>
+ <property name="page-increment">0.1</property>
<signal name="value-changed" handler="hsv_changed" object="GtkColorEditor" swapped="yes"/>
</object>
<object class="GtkAdjustment" id="v_adj">
<property name="upper">1</property>
<property name="step-increment">0.01</property>
- <property name="page-increment">0.10000000000000001</property>
+ <property name="page-increment">0.1</property>
<signal name="value-changed" handler="hsv_changed" object="GtkColorEditor" swapped="yes"/>
</object>
<template class="GtkColorEditor" parent="GtkBox">
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]