X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fdemos%2FDemoApplication.java;h=3e4cbe92d56bcde373a7c6ec1d05e2327e86c0b1;hb=505be508ae7d3fb48122be548b310a238cfb91eb;hp=0e4f189c5760493622bb0ce9c17536de96fc3c13;hpb=8994e79675c9d5c6dfc5894c71dc5364c7f2c935;p=fanfix.git diff --git a/src/jexer/demos/DemoApplication.java b/src/jexer/demos/DemoApplication.java index 0e4f189..3e4cbe9 100644 --- a/src/jexer/demos/DemoApplication.java +++ b/src/jexer/demos/DemoApplication.java @@ -135,7 +135,10 @@ public class DemoApplication extends TApplication { * @throws Exception if TApplication can't instantiate the Backend. */ public DemoApplication(final BackendType backendType) throws Exception { - super(backendType); + // For the Swing demo, use an initial size of 82x28 so that a + // terminal window precisely fits the window. + super(backendType, (backendType == BackendType.SWING ? 82 : -1), + (backendType == BackendType.SWING ? 28 : -1), 20); addAllWidgets(); getBackend().setTitle(i18n.getString("applicationTitle")); } @@ -236,6 +239,7 @@ public class DemoApplication extends TApplication { item = swingMenu.addItem(3001, i18n.getString("smaller")); } + addTableMenu(); addWindowMenu(); addHelpMenu(); }