Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix section resize toggle with Qt5 #2

Merged
merged 1 commit into from
Nov 6, 2017
Merged
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
12 changes: 9 additions & 3 deletions src/rqt_topic/topic_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,10 +314,16 @@ def handle_header_view_customContextMenuRequested(self, pos):

# evaluate user action
if action is action_toggle_auto_resize:
if header.resizeMode(0) == QHeaderView.ResizeToContents:
header.setResizeMode(QHeaderView.Interactive)
try:
sectionResizeMode = header.sectionResizeMode # Qt5
setSectionResizeMode = header.setSectionResizeMode # Qt5
except AttributeError:
sectionResizeMode = header.resizeMode # Qt4
setSectionResizeMode = header.setResizeMode # Qt4
if sectionResizeMode(0) == QHeaderView.ResizeToContents:
setSectionResizeMode(QHeaderView.Interactive)
else:
header.setResizeMode(QHeaderView.ResizeToContents)
setSectionResizeMode(QHeaderView.ResizeToContents)

@Slot('QPoint')
def on_topics_tree_widget_customContextMenuRequested(self, pos):
Expand Down