[glade] Allow 3 decimal digits for the text scale value.
- From: Juan Pablo Ugarte <jpu src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glade] Allow 3 decimal digits for the text scale value.
- Date: Thu, 17 Apr 2014 00:43:59 +0000 (UTC)
commit 8ecfecfd5a06b755206ba20dbe0b51353477feea
Author: David Shea <dshea redhat com>
Date: Wed Apr 16 11:03:25 2014 -0400
Allow 3 decimal digits for the text scale value.
plugins/gtk+/glade-attributes.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/plugins/gtk+/glade-attributes.c b/plugins/gtk+/glade-attributes.c
index 167476f..368cb5b 100644
--- a/plugins/gtk+/glade-attributes.c
+++ b/plugins/gtk+/glade-attributes.c
@@ -207,6 +207,7 @@ static gboolean
append_empty_row (GtkListStore *store, PangoAttrType type)
{
const gchar *name = NULL;
+ guint spin_digits = 0;
GtkListStore *model = get_enum_model_for_combo (type);
GtkTreeIter iter;
AttrEditType edit_type = EDIT_INVALID;
@@ -293,6 +294,7 @@ append_empty_row (GtkListStore *store, PangoAttrType type)
case PANGO_ATTR_SCALE:
edit_type = EDIT_SPIN;
name = C_ ("textattr", "Scale");
+ spin_digits = 3;
break;
case PANGO_ATTR_FONT_DESC:
@@ -327,6 +329,7 @@ append_empty_row (GtkListStore *store, PangoAttrType type)
COLUMN_TEXT_STYLE, PANGO_STYLE_ITALIC,
COLUMN_TEXT_FG, "Grey",
COLUMN_COMBO_MODEL, model,
+ COLUMN_SPIN_DIGITS, spin_digits,
ACTIVATE_COLUMN_FROM_TYPE (edit_type), TRUE, -1);
return TRUE;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]