Skip to content

Commit

Permalink
Fix help button text wrapping in certain situations
Browse files Browse the repository at this point in the history
  • Loading branch information
robinnorth committed May 23, 2023
1 parent f77f8ed commit ecdaac7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

<!-- ## [Unreleased] -->
## [Unreleased]

### Fixed

- Fix help button text wrapping in certain situations.

## [6.0.0] - 2023-05-16

Expand Down
1 change: 1 addition & 0 deletions Editor/Build/UI/UnityBuildGUIUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ private UnityBuildGUIUtility()
_helpButtonStyle.fontStyle = FontStyle.Normal;
_helpButtonStyle.margin = new RectOffset(0, 5, 0, 0);
_helpButtonStyle.fixedWidth = 30;
_helpButtonStyle.wordWrap = false;

_midHeaderStyle = new GUIStyle(EditorStyles.helpBox);
_midHeaderStyle.fontStyle = FontStyle.Bold;
Expand Down

0 comments on commit ecdaac7

Please sign in to comment.