overviewControl: Store search entry container

It'll be used by the next commit.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1678>
This commit is contained in:
Georges Basile Stavracas Neto 2021-02-15 17:38:36 -03:00 committed by Marge Bot
parent e3f12e3e23
commit 930d0b6151

View File

@ -273,7 +273,7 @@ class ControlsManager extends St.Widget {
can_focus: true, can_focus: true,
}); });
this._searchEntry.set_offscreen_redirect(Clutter.OffscreenRedirect.ALWAYS); this._searchEntry.set_offscreen_redirect(Clutter.OffscreenRedirect.ALWAYS);
const searchEntryBin = new St.Bin({ this._searchEntryBin = new St.Bin({
child: this._searchEntry, child: this._searchEntry,
x_align: Clutter.ActorAlign.CENTER, x_align: Clutter.ActorAlign.CENTER,
}); });
@ -323,14 +323,15 @@ class ControlsManager extends St.Widget {
this._stateAdjustment); this._stateAdjustment);
this._appDisplay = new AppDisplay.AppDisplay(); this._appDisplay = new AppDisplay.AppDisplay();
this.add_child(searchEntryBin); this.add_child(this._searchEntryBin);
this.add_child(this._appDisplay); this.add_child(this._appDisplay);
this.add_child(this.dash); this.add_child(this.dash);
this.add_child(this._searchController); this.add_child(this._searchController);
this.add_child(this._thumbnailsBox); this.add_child(this._thumbnailsBox);
this.add_child(this._workspacesDisplay); this.add_child(this._workspacesDisplay);
this.layout_manager = new ControlsManagerLayout(searchEntryBin, this.layout_manager = new ControlsManagerLayout(
this._searchEntryBin,
this._appDisplay, this._appDisplay,
this._workspacesDisplay, this._workspacesDisplay,
this._thumbnailsBox, this._thumbnailsBox,