diff --git a/src/extension.js b/src/extension.js index c6a1e06..e27e354 100644 --- a/src/extension.js +++ b/src/extension.js @@ -173,7 +173,7 @@ var TeaTime = class extends PanelMenu.Button { this._settings = Utils.getSettings(); - this._logo = new Icon.TwoColorIcon(24, Icon.TeaPot); + this._logo = new Icon.TwoColorIcon(20, Icon.TeaPot); // set timer widget this._textualTimer = new St.Label({ @@ -181,7 +181,7 @@ var TeaTime = class extends PanelMenu.Button { x_align: Clutter.ActorAlign.END, y_align: Clutter.ActorAlign.CENTER }); - this._graphicalTimer = new Icon.TwoColorIcon(24, Icon.Pie); + this._graphicalTimer = new Icon.TwoColorIcon(20, Icon.Pie); this.actor.add_actor(this._logo); this.actor.add_style_class_name('panel-status-button'); diff --git a/src/icon.js b/src/icon.js index 4490234..eda72d8 100644 --- a/src/icon.js +++ b/src/icon.js @@ -20,7 +20,7 @@ var TwoColorIcon = class extends St.DrawingArea { constructor(size, drawingObject) { super({ reactive: true, - style: 'padding: 0px 2px' + style: 'padding: 0px 0px' }); this.myinit = function () { this._base_size = size;