We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 597c64e commit fee1fcaCopy full SHA for fee1fca
Sources/GtkBackend/GtkBackend.swift
@@ -1517,8 +1517,8 @@ public final class GtkBackend: AppBackend {
1517
if components.contains(.hourAndMinute) {
1518
print("Warning: time picker is unimplemented on GtkBackend")
1519
}
1520
- if environment.datePickerStyle == .wheel || environment.datePickerStyle == .compact {
1521
- print("Warning: only datePickerStyle.graphical is implemented in GtkBackend")
+ if environment.datePickerStyle != .automatic && environment.datePickerStyle != .graphical {
+ print("Warning: only DatePickerStyle.graphical is implemented in GtkBackend")
1522
1523
1524
let calendarWidget = datePicker as! Gtk.Calendar
0 commit comments