Skip to content

Commit

Permalink
Merge branch '1.3_maintenance' into 1.4_maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
murraystevenson committed Sep 9, 2024
2 parents d8c720d + 58ecdae commit 9165c28
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---
Expand Down Expand Up @@ -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)
========

Expand Down
1 change: 1 addition & 0 deletions python/GafferUI/VectorDataWidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
Expand Down

0 comments on commit 9165c28

Please sign in to comment.