X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fdemos%2FDemoApplication.java;h=a352dee8ef625655f828faf435a9122efd878fc7;hb=a2018e9964f6c58742cd1e6dd0a0c63e244a89d6;hp=7e7126fb153f97062170d65c9983141fbc72597d;hpb=6985c57265a980ceeb8cb10a8677fe387adb3eb7;p=nikiroo-utils.git diff --git a/src/jexer/demos/DemoApplication.java b/src/jexer/demos/DemoApplication.java index 7e7126f..a352dee 100644 --- a/src/jexer/demos/DemoApplication.java +++ b/src/jexer/demos/DemoApplication.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2016 Kevin Lamonte + * Copyright (C) 2017 Kevin Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -74,6 +74,7 @@ public class DemoApplication extends TApplication { item = subMenu.addItem(2002, "&Normal (sub)"); addWindowMenu(); + addHelpMenu(); } /** @@ -93,6 +94,8 @@ public class DemoApplication extends TApplication { final OutputStream output) throws UnsupportedEncodingException { super(input, output); addAllWidgets(); + + getBackend().setTitle("Jexer Demo Application"); } /** @@ -111,6 +114,8 @@ public class DemoApplication extends TApplication { final PrintWriter writer, final boolean setRawMode) { super(input, reader, writer, setRawMode); addAllWidgets(); + + getBackend().setTitle("Jexer Demo Application"); } /** @@ -183,5 +188,6 @@ public class DemoApplication extends TApplication { public DemoApplication(final BackendType backendType) throws Exception { super(backendType); addAllWidgets(); + getBackend().setTitle("Jexer Demo Application"); } }