Class: Bootloader::DeviceMapDialog

Inherits:
Object
  • Object
show all
Includes:
Yast::I18n, Yast::UIShortcuts
Defined in:
src/lib/bootloader/device_map_dialog.rb

Overview

Represents dialog for modification of device map

Class Method Summary (collapse)

Instance Method Summary (collapse)

Class Method Details

+ (Object) run



16
17
18
# File 'src/lib/bootloader/device_map_dialog.rb', line 16

def self.run
  new.run
end

Instance Method Details

- (Object) run



20
21
22
23
24
25
26
27
28
29
30
# File 'src/lib/bootloader/device_map_dialog.rb', line 20

def run
  textdomain "bootloader"

  return unless create_dialog

  begin
    return controller_loop
  ensure
    close_dialog
  end
end