Skip to content

Commit 3a98f5b

Browse files
committed
Fix Color Picker format name truncation issue
Increased the width of the format name column from 48px to 64px in ColorFormatControl.xaml to properly display longer color format names like 'DECIMAL', 'HEX Int', 'CIEXYZ', etc. without them being cut off (e.g. 'DECIMAI' instead of 'DECIMAL'). Fixes #25063
1 parent 9dcddfd commit 3a98f5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/colorPicker/ColorPickerUI/Controls/ColorFormatControl.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
CornerRadius="{DynamicResource ControlCornerRadius}">
134134
<Grid Margin="12,0,0,0">
135135
<Grid.ColumnDefinitions>
136-
<ColumnDefinition Width="48" />
136+
<ColumnDefinition Width="64" />
137137
<ColumnDefinition Width="*" />
138138
<ColumnDefinition Width="40" />
139139
</Grid.ColumnDefinitions>

0 commit comments

Comments
 (0)