Method: Gtk::Dialog#run

Defined in:
lib/gtk3/dialog.rb

#runObject



42
43
44
45
46
47
48
49
# File 'lib/gtk3/dialog.rb', line 42

def run
  response_id = run_raw
  if response_id < 0
    ResponseType.new(response_id)
  else
    response_id
  end
end