Skip to content

Commit

Permalink
Minor changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
raquelalegre committed Apr 17, 2015
1 parent f9c6c7f commit 16ef177
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/nammu/view/ConsoleView.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ def __init__(self, controller):
#Create console-looking area
self.editArea = JTextArea()
self.editArea.border = BorderFactory.createEmptyBorder(4,4,4,4)
self.editArea.font=Font("Courier New", Font.BOLD, 14)
self.editArea.font = Font("Courier New", Font.BOLD, 14)
self.editArea.background = Color.BLACK
self.editArea.foreground = Color.WHITE
self.editArea.text = "Console started. Log will appear here."
self.editArea.text = "Console started. Nammu's log will appear here.\n\n"

#Will need scrolling controls
scrollingText = JScrollPane(self.editArea)
Expand Down

0 comments on commit 16ef177

Please sign in to comment.