Skip to content

Commit

Permalink
Close -> Back
Browse files Browse the repository at this point in the history
  • Loading branch information
jasperalbers committed May 20, 2024
1 parent d147662 commit 2563466
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Doughy/SettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import SwiftUI
struct SettingsView: View {
@EnvironmentObject var settings: Settings
@Binding var isShowingSettings: Bool
@State private var isHoveredClose = false
@State private var isHoveredBack = false
@State private var isHoveredURL = false
@Environment(\.openURL) var openURL

Expand Down Expand Up @@ -38,9 +38,8 @@ struct SettingsView: View {
)
dropdownButton(
action: { isShowingSettings = false },
shortcutKey: ",",
isHovered: $isHoveredClose,
label: "Close"
isHovered: $isHoveredBack,
label: "Back"
)
}
.frame(width: 250)
Expand Down

0 comments on commit 2563466

Please sign in to comment.