We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4814cd9 commit e92e0c2Copy full SHA for e92e0c2
convex-gui/src/main/java/convex/gui/repl/REPLPanel.java
@@ -190,7 +190,7 @@ public REPLPanel(Convex convex) {
190
inputPanel.add(inputScrollPane,"dock center");
191
192
JPanel historyPanel=new JPanel();
193
- historyPanel.setLayout(new MigLayout("wrap 1"));
+ historyPanel.setLayout(new MigLayout("wrap 1,aligny center"));
194
historyPanel.add(ActionButton.build(0xe316, e->scrollHistory(-1),"Previous command in history"));
195
historyPanel.add(ActionButton.build(0xe313, e->scrollHistory(1),"Next command in history"));
196
inputPanel.add(historyPanel,"dock east");
0 commit comments