gnome-shell/gnome-shell-jscSLE9267-Remove-sessionList-of-endSessionDialog.patch
Dominique Leuenberger 9d8f90830e Accepting request 963316 from GNOME:Next
- Update to version 42.0:
  + introspect: Add WindowsChanged signal.
  + Fix on-screen keyboard during grabs.
  + Fixed crash.
  + Updated translations.

- Update to version 42.rc:
  + Fix programatically set scrollview fade.
  + Fix overview DND during screencasts.
  + Fix taking screenshots with shift+PrntScrn.
  + Disable workspace switching while in search.
  + Fix opening device settings for enterprise WPA networks.
  + Switch workspaces with Home and End keys in overview.
  + Fix regressions from style refresh.
  + Show disabled icons in system menu when devices are disabled.
  + Fix inserting items from object inspector in looking glass.
  + Fix drag placeholder position in dash in RTL locales.
  + Simplify signal handling with (dis)connectObject() convenience
    methods.
  + Ensure remote access indicator is shown for a minimum time.
  + Improve CSS shadow appearance.
  + Ignore work area in overview layout.
  + Fix glitches in overview transition.
  + Fixed crash.
  + Misc. bug fixes and cleanups.
  + Updated translations.
- Update patches with quilt.

- Update to version 42.beta+40:
  * overview: Don't expect time argument from drag-end signal

OBS-URL: https://build.opensuse.org/request/show/963316
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=500
2022-03-21 08:37:00 +00:00

25 lines
1.0 KiB
Diff

Index: gnome-shell-42.rc/js/ui/endSessionDialog.js
===================================================================
--- gnome-shell-42.rc.orig/js/ui/endSessionDialog.js
+++ gnome-shell-42.rc/js/ui/endSessionDialog.js
@@ -298,7 +298,7 @@ class EndSessionDialog extends ModalDial
this.contentLayout.add_child(this._applicationSection);
this._sessionSection = new Dialog.ListSection({
- title: _('Other users are logged in'),
+ title: _('Other users are logged in. You can list these users with the "who" command.'),
});
this.contentLayout.add_child(this._sessionSection);
@@ -773,8 +773,8 @@ class EndSessionDialog extends ModalDial
this._applications.push(inhibitor);
}
- if (dialogContent.showOtherSessions)
- this._loadSessions();
+ // if (dialogContent.showOtherSessions) // Hide _sessionList for jsc#SLE-9267
+ // this._loadSessions();
let updatesAllowed = this._updatesPermission && this._updatesPermission.allowed;