mirror of
https://github.com/TimeCrafters/timecrafters_configuration_tool_desktop.git
synced 2025-12-15 21:32:35 +00:00
18 lines
329 B
Ruby
18 lines
329 B
Ruby
module TAC
|
|
class Dialog
|
|
class AlertDialog < Dialog
|
|
def build
|
|
background Gosu::Color::GRAY
|
|
label @options[:message]
|
|
|
|
button "Close", width: 1.0, margin_top: THEME_DIALOG_BUTTON_PADDING do
|
|
try_commit
|
|
end
|
|
end
|
|
|
|
def try_commit
|
|
close
|
|
end
|
|
end
|
|
end
|
|
end |