altTab: use AltTab prefix on AppIcon class

There's an AppIcon class on appDisplay, so it won't be easy to discern
the one we're going to add in altTab.

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/700
This commit is contained in:
Marco Trevisan (Treviño) 2019-04-19 09:02:00 +03:00 committed by Florian Müllner
parent ea4d5f89eb
commit 1687a5451e

View File

@ -648,8 +648,9 @@ class WindowCyclerPopup extends CyclerPopup {
} }
}); });
var AppIcon = GObject.registerClass( var AppIcon = GObject.registerClass({
class AppIcon extends St.BoxLayout { GTypeName: 'AltTab_AppIcon'
}, class AppIcon extends St.BoxLayout {
_init(app) { _init(app) {
super._init({ style_class: 'alt-tab-app', super._init({ style_class: 'alt-tab-app',
vertical: true }); vertical: true });