-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v8.1.18: refactored pre-run window, noCursor option
- Loading branch information
Showing
21 changed files
with
190 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { Editor, HardwareCheckbox, MirroredControls, MobileControls, | ||
MouseCapture, | ||
SockdriveWrite, | ||
SystemCursor, | ||
WorkerCheckbox } from "../components/dos-option-checkbox"; | ||
import { BackendSelect, RenderAspectSelect, RenderSelect, ThemeSelect } from "../components/dos-option-select"; | ||
import { MouseSensitiviySlider, ScaleControlsSlider, VolumeSlider } from "../components/dos-option-slider"; | ||
import { Play } from "../window/prerun-window"; | ||
|
||
export function PreRunFrame(props: {}) { | ||
return <div class="prerun-frame frame-root items-start pl-4"> | ||
<Play button={true} /> | ||
<SystemCursor /> | ||
<MouseCapture /> | ||
<MobileControls /> | ||
<MirroredControls /> | ||
<ScaleControlsSlider class="mt-4" /> | ||
<MouseSensitiviySlider /> | ||
<VolumeSlider /> | ||
<BackendSelect multiline={true} /> | ||
<WorkerCheckbox /> | ||
<RenderSelect multiline={true} /> | ||
<RenderAspectSelect multiline={true} /> | ||
<HardwareCheckbox /> | ||
<SockdriveWrite /> | ||
<Editor /> | ||
<ThemeSelect multiline={true} /> | ||
</div>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
import { Editor, MirroredControls, MobileControls, | ||
MouseCapture, PauseCheckbox } from "../components/dos-option-checkbox"; | ||
import { MirroredControls, MobileControls, | ||
MouseCapture, SystemCursor, PauseCheckbox } from "../components/dos-option-checkbox"; | ||
import { ThemeSelect } from "../components/dos-option-select"; | ||
import { MouseSensitiviySlider, ScaleControlsSlider, VolumeSlider } from "../components/dos-option-slider"; | ||
|
||
export function SettingsFrame(props: {}) { | ||
return <div class="settings-frame frame-root items-start pl-4"> | ||
<PauseCheckbox /> | ||
<SystemCursor /> | ||
<MouseCapture /> | ||
<MobileControls /> | ||
<MirroredControls /> | ||
<ScaleControlsSlider class="mt-4" /> | ||
<MouseSensitiviySlider /> | ||
<VolumeSlider /> | ||
<Editor /> | ||
<ThemeSelect multiline={true} /> | ||
</div>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.