You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The content in the Displays panel can move horizontally, so that the unfold arrow on the left is hidden, like in these screenshots:
(In the bottom one, I scrolled back to the left using the arrow keys)
In this MoveIt PR, a simple fix for a similar problem was proposed, which simply removes the AutoScroll property from the QtCreator .ui file. I would have submitted a PR, but I didn't find the corresponding location in the Rviz repository on first look.
Your environment
OS Version: Ubuntu 18.04
ROS Distro: Melodic
The text was updated successfully, but these errors were encountered:
Applying the "simple fix" from MoveIt in rviz's PropertyTreeWidget solves the scrolling issue. However, without scrolling editor widgets, e.g. the button of a combo box, will be hidden behind the scrollbar. Looks like this is a bug in Qt's TreeView, not correctly adapting the visible area when a scrollbar is displayed.
I can imagine two fixes:
Automatically scroll back as soon as the active editor is closed
Find a workaround to fix the Qt bug
The latter approach obviously will require more time. First of all, we should try to confirm that it is a Qt bug and report it upstream.
If there is a scrollbar visible, the visible width of the viewport is reduced,
which should be considered when computing the width of the second column.
Without this, the viewport will scroll horizontally to bring the 2nd column into view,
thus hiding the unfold arrows in the first column. Fixesros-visualization#1545.
The content in the Displays panel can move horizontally, so that the unfold arrow on the left is hidden, like in these screenshots:
(In the bottom one, I scrolled back to the left using the arrow keys)
In this MoveIt PR, a simple fix for a similar problem was proposed, which simply removes the AutoScroll property from the QtCreator .ui file. I would have submitted a PR, but I didn't find the corresponding location in the Rviz repository on first look.
Your environment
The text was updated successfully, but these errors were encountered: