Replace window realm frame decorations with nicer label decorations
This commit is contained in:
@ -2959,6 +2959,14 @@ export const AppIcon = GObject.registerClass({
|
||||
iconParams['createIcon'] = this._createIcon.bind(this);
|
||||
iconParams['setSizeManually'] = true;
|
||||
this.icon = new IconGrid.BaseIcon(app.get_name(), iconParams);
|
||||
|
||||
if (Main.realmManager.appIconLabelsEnabled()) {
|
||||
const realmLabel = Main.realmManager.createRealmLabelForApp(app);
|
||||
if (realmLabel) {
|
||||
this.icon._box.insert_child_at_index(realmLabel, 0);
|
||||
}
|
||||
}
|
||||
|
||||
this._iconContainer.add_child(this.icon);
|
||||
|
||||
this._dot = new St.Widget({
|
||||
|
Reference in New Issue
Block a user