window-list: Stop using obsolete StBin properties

Those properties were deprecated (and made no-ops) last cycle, and
have now been removed altogether.

https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/122
This commit is contained in:
Florian Müllner
2020-05-28 02:24:26 +02:00
parent 8c53fd9590
commit 60ad2e37ff
3 changed files with 0 additions and 8 deletions
-4
View File
@@ -220,8 +220,6 @@ const BaseButton = GObject.registerClass({
super._init({
style_class: 'window-button',
x_fill: true,
y_fill: true,
can_focus: true,
button_mask: St.ButtonMask.ONE | St.ButtonMask.THREE,
});
@@ -491,8 +489,6 @@ class AppButton extends BaseButton {
this._singleWindowTitle = new St.Bin({
x_expand: true,
y_fill: true,
x_align: St.Align.START,
});
stack.add_actor(this._singleWindowTitle);
-2
View File
@@ -286,8 +286,6 @@ class WindowPickerToggle extends St.Button {
style_class: 'window-picker-toggle',
child: iconBin,
visible: !Main.sessionMode.hasOverview,
x_fill: true,
y_fill: true,
toggle_mode: true,
});
@@ -106,8 +106,6 @@ class WorkspaceThumbnail extends St.Button {
layout_manager: new Clutter.BinLayout(),
clip_to_allocation: true,
}),
x_fill: true,
y_fill: true,
});
this.connect('destroy', this._onDestroy.bind(this));