[gnome-shell] windowManager: Cleanup dialog a bit



commit 20895c7791bc39b282ec3ff5d8d71fabd2e31482
Author: Jonas Dreßler <verdre v0yd nl>
Date:   Sun Dec 8 13:10:16 2019 +0100

    windowManager: Cleanup dialog a bit
    
    This doesn't have to be a prompt-dialog, so remove the css class, also
    the MessageDialogContent doesn't need the x and y_expand properties, so
    remove those, too.
    
    https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/942

 js/ui/windowManager.js | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)
---
diff --git a/js/ui/windowManager.js b/js/ui/windowManager.js
index 629fbc21ad..1fec105f0c 100644
--- a/js/ui/windowManager.js
+++ b/js/ui/windowManager.js
@@ -45,7 +45,7 @@ const WINDOW_DIMMER_EFFECT_NAME = "gnome-shell-window-dimmer";
 var DisplayChangeDialog = GObject.registerClass(
 class DisplayChangeDialog extends ModalDialog.ModalDialog {
     _init(wm) {
-        super._init({ styleClass: 'prompt-dialog' });
+        super._init();
 
         this._wm = wm;
 
@@ -54,12 +54,7 @@ class DisplayChangeDialog extends ModalDialog.ModalDialog {
         let title = _("Do you want to keep these display settings?");
         let description = this._formatCountDown();
 
-        this._content = new Dialog.MessageDialogContent({
-            title, description,
-            x_expand: true,
-            y_expand: true,
-        });
-
+        this._content = new Dialog.MessageDialogContent({ title, description });
         this.contentLayout.add_child(this._content);
 
         /* Translators: this and the following message should be limited in length,


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