修改侧边栏方向

This commit is contained in:
许轲 2023-10-02 08:46:03 +08:00
parent a2cb2406a1
commit 66f30eccf9

View File

@ -1,5 +1,6 @@
package org.jcnc.jnotepad.views.root.left.sidebar.tools; package org.jcnc.jnotepad.views.root.left.sidebar.tools;
import javafx.geometry.Orientation;
import javafx.scene.control.Button; import javafx.scene.control.Button;
/** /**
@ -28,6 +29,7 @@ public class SidebarToolBar extends javafx.scene.control.ToolBar {
Button fileButton = new Button(); Button fileButton = new Button();
private SidebarToolBar() { private SidebarToolBar() {
this.setOrientation(Orientation.VERTICAL);
} }
/** /**