Skip to content

Commit 3cbe6d4

Browse files
author
setchi
committed
Rename
1 parent 11e6c8a commit 3cbe6d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/Scripts/Presenter/Toolstrip/ToggleDisplaySettingsPresenter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ void Awake()
2929
.Where(_ => !isMouseOverOnSettingsWindow && Input.GetMouseButtonDown(0)))
3030
.Subscribe(_ => Settings.IsOpen.Value = false);
3131

32-
Settings.IsOpen.Select(isViewing => isViewing ? Vector3.zero : Vector3.up * 100000)
32+
Settings.IsOpen.Select(isOpen => isOpen ? Vector3.zero : Vector3.up * 100000)
3333
.Subscribe(pos => settingsWindowTransform.localPosition = pos);
3434

3535
Settings.IsOpen.Subscribe(_ => Settings.SelectedBlock.Value = -1);

0 commit comments

Comments
 (0)