mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
25 lines
405 B
Text
25 lines
405 B
Text
using Gtk 4.0;
|
|
|
|
Dialog {
|
|
[action response=cancel]
|
|
Button cancel_button {
|
|
label: _("Cancel");
|
|
}
|
|
|
|
[action reponse=9]
|
|
Button custom_response_button {
|
|
label: _("Reinstall Windows");
|
|
}
|
|
|
|
[action response=ok default]
|
|
Button ok_button {
|
|
label: _("Ok");
|
|
}
|
|
}
|
|
|
|
InfoBar {
|
|
[action response=ok]
|
|
Button ok_info_button {
|
|
label: _("Ok");
|
|
}
|
|
}
|