Method: TopinambourWindow#show_shortcuts

Defined in:
lib/window.rb

#show_shortcutsObject



88
89
90
91
92
93
94
# File 'lib/window.rb', line 88

def show_shortcuts
  resource_file = "/com/github/cedlemo/topinambour/shortcuts.ui"
  builder = Gtk::Builder.new(:resource => resource_file)
  shortcuts_win = builder["shortcuts-window"]
  shortcuts_win.transient_for = self
  shortcuts_win.show
end