[gnome-shell] systemActions: Use 'system-log-out-symbolic' for logout



commit 7d60f418e7575e10617ad066a16cd40b2c28c00a
Author: Amr Ibrahim <amribrahim1987 hotmail com>
Date:   Thu May 7 19:19:32 2020 +0000

    systemActions: Use 'system-log-out-symbolic' for logout
    
    Changing the icon to 'system-log-out-symbolic' has no visual
    change in a default GNOME setup since both 'system-log-out-symbolic'
    and 'application-exit-symbolic' are the same in adwaita-icon-theme
    (at the time of writing), however, other icon themes differentiate
    between the two icons so pointing to the appropriate icon name
    is the right thing to do.
    
    https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2751

 js/misc/systemActions.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/js/misc/systemActions.js b/js/misc/systemActions.js
index ba8edb0093..4f28a72f0f 100644
--- a/js/misc/systemActions.js
+++ b/js/misc/systemActions.js
@@ -107,7 +107,7 @@ const SystemActions = GObject.registerClass({
         this._actions.set(LOGOUT_ACTION_ID, {
             // Translators: The name of the logout action in search
             name: C_("search-result", "Log Out"),
-            iconName: 'application-exit-symbolic',
+            iconName: 'system-log-out-symbolic',
             // Translators: A list of keywords that match the logout action, separated by semicolons
             keywords: tokenizeKeywords(_('logout;log out;sign off')),
             available: false,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]