Gtk3: make prompt dialogs really modal.

This commit is contained in:
zeljan1 2025-03-25 14:13:52 +01:00
parent 394a1bd2d0
commit 6f6c363f07

View File

@ -62,7 +62,7 @@ type
implementation
uses gtk3int;
// fake GTK button responses
const
GTK_RESPONSE_LCL_ALL = TGtkResponseType(-15);
@ -422,7 +422,8 @@ begin
idDialogConfirm : Title := rsMtConfirmation;
end;
end;
if Assigned(Gtk3WidgetSet.Gtk3Application) then
gtk_window_set_transient_for(PGtkWindow(Dialog), Gtk3WidgetSet.Gtk3Application^.get_active_window);
gtk_window_set_title(PGtkWindow(Dialog), PGChar(Title));
gtk_dialog_run(Dialog);
end;