Skip to content

Commit 2d7b3ce

Browse files
committed
Fix unneeded horizontal scroll bar
1 parent d6d912a commit 2d7b3ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pdex/src/processing/mode/experimental/CompletionPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ private int calcWidth() {
212212
if(w == maxWidth)
213213
horizontalScrollBarVisible = true;
214214
w += editor.dmode.classIcon.getIconWidth(); // add icon width too!
215-
w += fm.stringWidth(" "); // a bit of offset
215+
w += fm.stringWidth(" "); // a bit of offset
216216
//log("popup width " + w);
217217
return w; // popup menu width
218218
}

0 commit comments

Comments
 (0)