File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -172,19 +172,23 @@ public void Save(BinaryWriter outf)
172
172
{
173
173
foreach ( var window in Windows )
174
174
if ( ! window . DoNotDisplayWindow )
175
+ {
175
176
// This if is added to not do the save in case of the out of focus window
176
177
// See Source\RunActivity\Viewer3D\Popups\OutOfFocusWindow.cs
177
178
window . Save ( outf ) ;
179
+ }
178
180
}
179
181
180
182
[ CallOnThread ( "Render" ) ]
181
183
public void Restore ( BinaryReader inf )
182
184
{
183
185
foreach ( var window in Windows )
184
186
if ( ! window . DoNotDisplayWindow )
187
+ {
185
188
// This if is added to not do the restore in case of the out of focus window
186
189
// See Source\RunActivity\Viewer3D\Popups\OutOfFocusWindow.cs
187
190
window . Restore ( inf ) ;
191
+ }
188
192
}
189
193
190
194
[ CallOnThread ( "Updater" ) ]
You can’t perform that action at this time.
0 commit comments