Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions config/Config.qml
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,11 @@ Singleton {
vpn: {
enabled: utilities.vpn.enabled,
provider: utilities.vpn.provider
},
recording: {
videoMode: utilities.recording.videoMode,
recordSystem: utilities.recording.recordSystem,
recordMicrophone: utilities.recording.recordMicrophone
}
};
}
Expand Down
7 changes: 7 additions & 0 deletions config/UtilitiesConfig.qml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ JsonObject {
property Sizes sizes: Sizes {}
property Toasts toasts: Toasts {}
property Vpn vpn: Vpn {}
property Recording recording: Recording {}

component Recording: JsonObject {
property string videoMode: "fullscreen"
property bool recordSystem: false
property bool recordMicrophone: false
}

component Sizes: JsonObject {
property int width: 430
Expand Down
1 change: 1 addition & 0 deletions modules/utilities/Wrapper.qml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Item {

readonly property PersistentProperties props: PersistentProperties {
property bool recordingListExpanded: false
property bool recordingAudioExpanded: false
property string recordingConfirmDelete
property string recordingMode

Expand Down
Loading