File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,20 @@ var ExtendLeftBox = class ExtendLeftBox extends Override.Injection {
9191 }
9292}
9393
94+ var TrayIcons = class TrayIcons extends Override . Injection {
95+ get active ( ) {
96+ return VERSION > 43
97+ }
98+
99+ _init ( ) {
100+ this . _append ( 'activate' , this . _setIconSize )
101+ }
102+
103+ _setIconSize ( ) {
104+ Object . defineProperty ( this . indicators , 'size' , { get : ( ) => - 1 } )
105+ }
106+ }
107+
94108var TitlebarActions = class TitlebarActions extends Override . Injection {
95109 get active ( ) {
96110 return VERSION < 42
Original file line number Diff line number Diff line change @@ -405,6 +405,8 @@ var DesktopName = class DesktopName extends Handlers.Feature {
405405var TrayIcons = class TrayIcons extends Handlers . Feature {
406406 constructor ( ) {
407407 super ( 'show-legacy-tray' , setting => setting == true )
408+
409+ Override . inject ( this , 'panel' , 'TrayIcons' )
408410 }
409411
410412 activate ( ) {
You can’t perform that action at this time.
0 commit comments