From 3d67b0de18fd541db96f75d76d2ccaf29a7b3f4b Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 4 Feb 2005 15:36:02 +0000 Subject: [PATCH] Avoid spurious selection of RTL direction if the widget does not have 2005-02-04 Matthias Clasen * gtk/gtkentry.c (gtk_entry_create_layout): Avoid spurious selection of RTL direction if the widget does not have focus. (#164125, Frederic Crozat) --- ChangeLog | 6 ++++++ ChangeLog.pre-2-10 | 6 ++++++ ChangeLog.pre-2-8 | 6 ++++++ gtk/gtkentry.c | 5 ++++- 4 files changed, 22 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e89f150c2f..c3bd1daa1f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-02-04 Matthias Clasen + + * gtk/gtkentry.c (gtk_entry_create_layout): Avoid spurious + selection of RTL direction if the widget does not have + focus. (#164125, Frederic Crozat) + 2005-02-03 Tor Lillqvist * modules/input/gtkimcontextime.c (get_pango_attr_list): Use the diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index e89f150c2f..c3bd1daa1f 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +2005-02-04 Matthias Clasen + + * gtk/gtkentry.c (gtk_entry_create_layout): Avoid spurious + selection of RTL direction if the widget does not have + focus. (#164125, Frederic Crozat) + 2005-02-03 Tor Lillqvist * modules/input/gtkimcontextime.c (get_pango_attr_list): Use the diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index e89f150c2f..c3bd1daa1f 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +2005-02-04 Matthias Clasen + + * gtk/gtkentry.c (gtk_entry_create_layout): Avoid spurious + selection of RTL direction if the widget does not have + focus. (#164125, Frederic Crozat) + 2005-02-03 Tor Lillqvist * modules/input/gtkimcontextime.c (get_pango_attr_list): Use the diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c index 7a81353c82..fbe019f6b1 100644 --- a/gtk/gtkentry.c +++ b/gtk/gtkentry.c @@ -2968,7 +2968,10 @@ gtk_entry_create_layout (GtkEntry *entry, { GdkDisplay *display = gtk_widget_get_display (widget); GdkKeymap *keymap = gdk_keymap_get_for_display (display); - pango_dir = gdk_keymap_get_direction (keymap); + if (gdk_keymap_get_direction (keymap) == PANGO_DIRECTION_RTL) + pango_dir = PANGO_DIRECTION_RTL; + else + pango_dir = PANGO_DIRECTION_LTR; } else {