Skip to content

Commit

Permalink
Remove redundant TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
rduivenvoorde committed Sep 3, 2020
1 parent 09fc2e6 commit 701d323
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions python/console/console_base.py
Expand Up @@ -111,14 +111,6 @@ def setLexers(self):
if fontSize:
font.setPointSize(fontSize)

# TODO: editor has it's own font and size...
# loadFont = self.settings.value("pythonConsole/fontfamilytextEditor")
# if loadFont:
# font.setFamily(loadFont)
# fontSize = self.settings.value("pythonConsole/fontsizeEditor", type=int)
# if fontSize:
# font.setPointSize(fontSize)

self.lexer.setDefaultFont(font)
self.lexer.setDefaultColor(QColor(self.settings.value("pythonConsole/defaultFontColor", QColor(self.DEFAULT_COLOR))))
self.lexer.setColor(QColor(self.settings.value("pythonConsole/commentFontColor", QColor(self.COMMENT_COLOR))), 1)
Expand Down

0 comments on commit 701d323

Please sign in to comment.