diff options
-rw-r--r-- | chrome/browser/gtk/gtk_util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/gtk/gtk_util.cc b/chrome/browser/gtk/gtk_util.cc index 305a411..44dd69c 100644 --- a/chrome/browser/gtk/gtk_util.cc +++ b/chrome/browser/gtk/gtk_util.cc @@ -504,7 +504,7 @@ void SetButtonTriggersNavigation(GtkWidget* button) { } int MirroredLeftPointForRect(GtkWidget* widget, const gfx::Rect& bounds) { - if (base::i18n::IsRTL()) + if (!base::i18n::IsRTL()) return bounds.x(); return widget->allocation.width - bounds.x() - bounds.width(); } |