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 ca20994 commit d5d26d6Copy full SHA for d5d26d6
Sources/Gtk3/Widgets/Dialog.swift
@@ -122,7 +122,11 @@ open class Dialog: Window {
122
func registerSignalHandlers() {
123
removeSignals()
124
125
- super.didMoveToParent()
+ // This seems sensible but causes crashes when people click outside of
126
+ // dialogs on Rocky Linux 8. Not quite sure what the root cause is, but
127
+ // it presents as a crash inside swift_retain inside SignalBox1.run (when
128
+ // the callback gets called) for the "button-press-event" signal.
129
+ // super.didMoveToParent()
130
131
addSignal(name: "close") { [weak self] () in
132
guard let self = self else { return }
0 commit comments