diff options
author | kali <kali@leap.se> | 2013-01-11 03:01:40 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2013-01-11 03:01:40 +0900 |
commit | f2660941cf01a25a36058ab25cae45cea2c062d3 (patch) | |
tree | 09df82613de44109352074dcf719e4c7b659a91c /src/leap/gui/progress.py | |
parent | 6fe187c4ea2a32105c712d34167058707f8f82f8 (diff) | |
parent | 6d85c97ddcc8a151b157919e9a7322fba151a551 (diff) |
Merge branch 'feature/parse-api-port' into develop
Diffstat (limited to 'src/leap/gui/progress.py')
-rw-r--r-- | src/leap/gui/progress.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/leap/gui/progress.py b/src/leap/gui/progress.py index ffea80de..ca4f6cc3 100644 --- a/src/leap/gui/progress.py +++ b/src/leap/gui/progress.py @@ -118,11 +118,12 @@ class StepsTableWidget(QtGui.QTableWidget): self.setSelectionMode( QtGui.QAbstractItemView.NoSelection) width = self.width() + # WTF? Here init width is 100... # but on populating is 456... :( + #logger.debug('init table. width=%s' % width) # XXX do we need this initial? - logger.debug('init table. width=%s' % width) self.horizontalHeader().resizeSection(0, width * 0.7) # this disables the table grid. @@ -286,7 +287,7 @@ class WithStepsMixIn(object): pagename = getattr(self, 'prev_page', None) if pagename is None: # pragma: no cover return - logger.debug('cleaning wizard errors for %s' % pagename) + #logger.debug('cleaning wizard errors for %s' % pagename) self.wizard().set_validation_error(pagename, None) def populateStepsTable(self): @@ -318,7 +319,7 @@ class WithStepsMixIn(object): table = self.stepsTableWidget FIRST_COLUMN_PERCENT = 0.70 width = table.width() - logger.debug('populate table. width=%s' % width) + #logger.debug('populate table. width=%s' % width) table.horizontalHeader().resizeSection(0, width * FIRST_COLUMN_PERCENT) def set_item_icon(self, img=ICON_CHECKMARK, current=True): |