diff --git a/Changes.md b/Changes.md index 183a92c4ec..402723f759 100644 --- a/Changes.md +++ b/Changes.md @@ -21,6 +21,7 @@ Fixes - SceneWriter : Fixed handling of ':' characters in set names when writing to USD. These were previously converted to '_' but are now preserved. - SceneReader : Fixed loading of animated ModelAPI extents from USD. - ResamplePrimitiveVariables : Fixed handling of periodic curves. +- VectorDataWidget : Fixed bug causing paths to display as "..." after the last visible "/" when the widget wasn't wide enough to show the entire path. API --- @@ -759,11 +760,19 @@ Build - Removed QtNetworkAuth library. - USD : Updated to version 23.11. -1.3.16.x (relative to 1.3.16.7) +1.3.16.x (relative to 1.3.16.8) ======== +1.3.16.8 (relative to 1.3.16.7) +======== + +Fixes +----- + +- VectorDataWidget : Fixed bug causing paths to display as "..." after the last visible "/" when the widget wasn't wide enough to show the entire path. + 1.3.16.7 (relative to 1.3.16.6) ======== diff --git a/python/GafferUI/VectorDataWidget.py b/python/GafferUI/VectorDataWidget.py index d4a6978dc6..da097cc5e8 100644 --- a/python/GafferUI/VectorDataWidget.py +++ b/python/GafferUI/VectorDataWidget.py @@ -111,6 +111,7 @@ def __init__( self.__tableView.customContextMenuRequested.connect( Gaffer.WeakMethod( self.__contextMenu ) ) self.__tableView.verticalHeader().setDefaultSectionSize( 20 ) + self.__tableView.setWordWrap( False ) self.__tableViewHolder = GafferUI.Widget( self.__tableView ) self.__column.append( self.__tableViewHolder )