Skip to content

Commit 2843422

Browse files
committed
Fix #5
1 parent ae06469 commit 2843422

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Editor/Window/BuildManagerWindow.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
s using System;
22
using System.Linq;
33
using UnityEngine;
44
using UnityEditor;
@@ -132,6 +132,7 @@ void DrawGlobalBuildData() {
132132
}
133133

134134
void DrawChangelogInfo() {
135+
bool oldChangelogFoldoutValue = changelogFoldout;
135136
changelogFoldout = EditorGUILayout.BeginFoldoutHeaderGroup(changelogFoldout, "Changelog");
136137
EditorGUILayout.EndFoldoutHeaderGroup();
137138

@@ -238,7 +239,7 @@ void DrawChangelogInfo() {
238239
#endif
239240
}
240241

241-
if (GUI.changed)
242+
if (oldChangelogFoldoutValue != changelogFoldout)
242243
ChangelogData.SaveChangelog(changelog);
243244

244245
if (changelogFoldout)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.teamon.buildmanager",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"displayName": "Build Manager",
55
"description": "Utility for running builds sequence & pushing them to markets & keeping changelog",
66
"unity": "2019.1",

0 commit comments

Comments
 (0)