Skip to content

Commit

Permalink
[#38] Fixed scaling issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrossignol committed Jul 31, 2015
1 parent 9c07ee9 commit 9bfa031
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.txt
@@ -1,5 +1,6 @@
Waypoint Manager 2.4.2
- Fixed issues with apply button in add mode (thanks Bizz Keryear).
- Fixed issue with waypoint icon scaling when large icons used (thanks amorymeltzer).

Waypoint Manager 2.4.1
- Correctly display name for "clustered" waypoints (Alpha, Beta, Gamma).
Expand Down
Binary file modified GameData/WaypointManager/WaypointManager.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion source/WaypointManager/WaypointManager.cs
Expand Up @@ -432,7 +432,7 @@ protected void WaypointLineGUI(WaypointData wpd)
GUILayout.BeginHorizontal(GUILayout.Height(32));

// Contract icon
GUILayout.Label(ContractIcon(wpd), GUILayout.ExpandWidth(false));
GUILayout.Label(ContractIcon(wpd), GUILayout.ExpandWidth(false), GUILayout.Height(38));
GUILayout.Space(2);

// Celestial body icon
Expand Down

0 comments on commit 9bfa031

Please sign in to comment.