Files
gnome-shell/endSession-dialog-update-time-label-every-sec.patch
Dominique Leuenberger 79855f1e26 - Update to version 48.4:
+ Fix taking interactive screenshots via D-Bus.
  + Fix pointer scaling glitches in magnifier.
  + Fix drawing glitch in sliders in RTL locales.
  + Misc. bug fixes and cleanups.
  + Updated translations.

OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=619
2025-08-05 06:38:29 +00:00

17 lines
667 B
Diff

Index: gnome-shell-48.rc/js/ui/endSessionDialog.js
===================================================================
--- gnome-shell-48.rc.orig/js/ui/endSessionDialog.js
+++ gnome-shell-48.rc/js/ui/endSessionDialog.js
@@ -373,7 +373,10 @@ class EndSessionDialog extends ModalDial
let description;
let displayTime = _roundSecondsToInterval(
- this._totalSecondsToStayOpen, this._secondsLeft, 10);
+ this._totalSecondsToStayOpen,
+ this._secondsLeft,
+ // larger than any normal value
+ 1000000);
if (this._user.is_loaded) {
let realName = this._user.get_real_name();