Accidentally left in print() used for testing

This commit is contained in:
ZDarian 2015-01-23 06:35:06 -07:00
parent 00f67135ae
commit a08b814e5f

View File

@ -115,7 +115,6 @@ class TabBar(QTabBar):
"""Auto-hide the tabbar if needed."""
hide_auto = config.get('tabs', 'hide-auto')
hide_always = config.get('tabs', 'hide-always')
print('draw')
if hide_always or hide_auto and self.count() == 1:
self.hide()
else: