From c7f5f172ddd0f7fb49f758543941c6b3a9396068 Mon Sep 17 00:00:00 2001 From: Yosef Or Boczko Date: Fri, 27 Jun 2014 01:25:22 +0300 Subject: [PATCH] Use the new RTL icons from adwaita Use the suffix -rtl and -ltr. https://bugzilla.gnome.org/show_bug.cgi?id=732301 --- js/ui/viewSelector.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/viewSelector.js b/js/ui/viewSelector.js index 550510b06..e7d9b1dfb 100644 --- a/js/ui/viewSelector.js +++ b/js/ui/viewSelector.js @@ -83,10 +83,10 @@ const ViewSelector = new Lang.Class({ icon_name: 'edit-find-symbolic' })); if (this._entry.get_text_direction() == Clutter.TextDirection.RTL) this._clearIcon = new St.Icon({ style_class: 'search-entry-icon', - icon_name: 'edit-clear-rtl-symbolic' }); + icon_name: 'edit-clear-symbolic-rtl' }); else this._clearIcon = new St.Icon({ style_class: 'search-entry-icon', - icon_name: 'edit-clear-symbolic' }); + icon_name: 'edit-clear-symbolic-ltr' }); this._iconClickedId = 0; this._capturedEventId = 0;