nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 21 lines 876 B view raw
1diff --git a/js/gdm/loginDialog.js b/js/gdm/loginDialog.js 2index 28db1a9de..805b686bf 100644 3--- a/js/gdm/loginDialog.js 4+++ b/js/gdm/loginDialog.js 5@@ -46,6 +46,7 @@ const _FADE_ANIMATION_TIME = 250; 6 const _SCROLL_ANIMATION_TIME = 500; 7 const _TIMED_LOGIN_IDLE_THRESHOLD = 5.0; 8 const _CONFLICTING_SESSION_DIALOG_TIMEOUT = 60; 9+const _LOGO_ICON_HEIGHT = 48; 10 11 export const UserListItem = GObject.registerClass({ 12 Signals: {'activate': {}}, 13@@ -908,7 +909,7 @@ export const LoginDialog = GObject.registerClass({ 14 const scaleFactor = St.ThemeContext.get_for_stage(global.stage).scale_factor; 15 const texture = this._textureCache.load_file_async( 16 this._logoFile, 17- -1, -1, 18+ -1, _LOGO_ICON_HEIGHT, 19 scaleFactor, resourceScale); 20 this._logoBin.add_child(texture); 21 }