feat: first tries at save dialog, so far failing
This commit is contained in:
13
MLXServer/Utilities/FocusedValues.swift
Normal file
13
MLXServer/Utilities/FocusedValues.swift
Normal file
@@ -0,0 +1,13 @@
|
||||
import SwiftUI
|
||||
|
||||
/// Focused value key for triggering chat export from the menu bar.
|
||||
struct FocusedExportTriggerKey: FocusedValueKey {
|
||||
typealias Value = Binding<Bool>
|
||||
}
|
||||
|
||||
extension FocusedValues {
|
||||
var exportTrigger: Binding<Bool>? {
|
||||
get { self[FocusedExportTriggerKey.self] }
|
||||
set { self[FocusedExportTriggerKey.self] = newValue }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user