appDisplay: Move adaptToSize call to FolderView
There is absolutely no need to handle this in the dialog itself. Move the call to adaptToSize into FolderView. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1301
This commit is contained in:
parent
d4a947b475
commit
c790c01a3b
@ -1097,6 +1097,18 @@ class FolderView extends BaseAppView {
|
||||
this._redisplay();
|
||||
}
|
||||
|
||||
vfunc_allocate(box) {
|
||||
const node = this.get_theme_node();
|
||||
const contentBox = node.get_content_box(box);
|
||||
|
||||
const [width, height] = contentBox.get_size();
|
||||
this.adaptToSize(width, height);
|
||||
|
||||
this._grid.topPadding = 0;
|
||||
|
||||
super.vfunc_allocate(box);
|
||||
}
|
||||
|
||||
_childFocused(actor) {
|
||||
Util.ensureActorVisibleInScrollView(this._scrollView, actor);
|
||||
}
|
||||
@ -1686,18 +1698,6 @@ var AppFolderDialog = GObject.registerClass({
|
||||
}
|
||||
|
||||
vfunc_allocate(box) {
|
||||
let contentBox = this.get_theme_node().get_content_box(box);
|
||||
contentBox = this._viewBox.get_theme_node().get_content_box(contentBox);
|
||||
|
||||
let [, entryBoxHeight] = this._entryBox.get_size();
|
||||
let spacing = this._viewBox.layout_manager.spacing;
|
||||
|
||||
this._view.adaptToSize(
|
||||
contentBox.get_width(),
|
||||
contentBox.get_height() - entryBoxHeight - spacing);
|
||||
|
||||
this._view._grid.topPadding = 0;
|
||||
|
||||
super.vfunc_allocate(box);
|
||||
|
||||
// We can only start zooming after receiving an allocation
|
||||
|
Loading…
Reference in New Issue
Block a user