Skip to content

Commit e92e0c2

Browse files
committed
Align GUI history scroll buttons
1 parent 4814cd9 commit e92e0c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

convex-gui/src/main/java/convex/gui/repl/REPLPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ public REPLPanel(Convex convex) {
190190
inputPanel.add(inputScrollPane,"dock center");
191191

192192
JPanel historyPanel=new JPanel();
193-
historyPanel.setLayout(new MigLayout("wrap 1"));
193+
historyPanel.setLayout(new MigLayout("wrap 1,aligny center"));
194194
historyPanel.add(ActionButton.build(0xe316, e->scrollHistory(-1),"Previous command in history"));
195195
historyPanel.add(ActionButton.build(0xe313, e->scrollHistory(1),"Next command in history"));
196196
inputPanel.add(historyPanel,"dock east");

0 commit comments

Comments
 (0)