Skip to content

Commit

Permalink
Merge pull request #6033 from murraystevenson/vectorDataWidgetWrap
Browse files Browse the repository at this point in the history
VectorDataWidget : Disable word wrap
  • Loading branch information
johnhaddon authored Sep 9, 2024
2 parents 5293a34 + dd13bdb commit 5f825e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
1.3.16.x (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 5f825e3

Please sign in to comment.