Skip to content

Commit

Permalink
Fix HiDPI icon size
Browse files Browse the repository at this point in the history
  • Loading branch information
pbojan committed Mar 27, 2021
1 parent 07f6c58 commit e8fbed6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions files/cryptocoins@pbojan/desklet.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ CryptocurrencyTicker.prototype = {
});
var left = new St.BoxLayout({
vertical: true,
width: WIDTH_ICON,
width: 50,
style_class: 'containerLeft'
});

Expand All @@ -268,7 +268,7 @@ CryptocurrencyTicker.prototype = {

var right = new St.BoxLayout({
vertical: true,
width: WIDTH - PADDING - WIDTH_ICON,
width: WIDTH - PADDING - 50,
style_class: 'containerRight'
});
var label = new St.Label({
Expand Down

0 comments on commit e8fbed6

Please sign in to comment.