Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/main/java/calao/Calao.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public class Calao extends JFrame implements ActionListener {

// GUI elements
/** The menu bar. */
LMenuBar menuBar;
MenuBar menuBar;

/** The home panel. */
private HomePanel homePanel;
Expand Down Expand Up @@ -266,7 +266,7 @@ public Calao() {
audioControl = new AudioInputController(prefs); // TODO: AUDIO
// unfinished

menuBar = new LMenuBar(bundle, prefs, version);
menuBar = new MenuBar(bundle, prefs, version);
setJMenuBar(menuBar);
menuBar.setVisible(true);
menuBar.addPropertyChangeListener(new PropertyChangeListener() {
Expand Down Expand Up @@ -766,7 +766,7 @@ public void setPrefs(Preferences prefs) {
* the arguments
*/
public static void main(String[] args) {
Boolean isDebugged = false;
Boolean isDebugged = true;
Calao app = new Calao();
isDebugged = app.isDebugged();
app.setAlwaysOnTop(isDebugged); // true if debug mode
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/calao/MidiController.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class MidiController
{


private static final Logger logger = LogManager.getLogger(LMenuBar.class.getName());
private static final Logger logger = LogManager.getLogger(MenuBar.class.getName());


Preferences appPrefs;
Expand Down