Skip to content

Commit

Permalink
Fix 3.36 cropped hover labels on vertical panel
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesg99 committed Mar 25, 2020
1 parent b34fcaf commit 769a484
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appIcons.js
Original file line number Diff line number Diff line change
Expand Up @@ -1557,7 +1557,7 @@ function ItemShowLabel() {
else if ( x + labelWidth > monitor.x + monitor.width - gap)
x -= x + labelWidth -( monitor.x + monitor.width) + gap;

this.label.set_position(x, y);
this.label.set_position(Math.round(x), Math.round(y));

if (Dash.DASH_ITEM_LABEL_SHOW_TIME < 1) {
Tweener.addTween(this.label, {
Expand Down

0 comments on commit 769a484

Please sign in to comment.