blob: 2a5235445346f0eb005fbd131e64498cd6b743dc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
namespace UnityEditor.TestTools.TestRunner
{
internal class TestRunnerWindowSettings
{
public bool verticalSplit;
private readonly string m_PrefsKey;
public TestRunnerWindowSettings(string prefsKey)
{
m_PrefsKey = prefsKey;
verticalSplit = EditorPrefs.GetBool(m_PrefsKey + ".verticalSplit", true);
}
public void ToggleVerticalSplit()
{
verticalSplit = !verticalSplit;
Save();
}
private void Save()
{
EditorPrefs.SetBool(m_PrefsKey + ".verticalSplit", verticalSplit);
}
}
}
|