32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# File '../../src/include/partitioning/ep-tmpfs-dialogs.rb', line 32
def DlgCreateTmpfs(data)
aliases = { "FormatMount" => lambda do
(
data_ref = arg_ref(data.value);
_MiniWorkflowStepFormatMount_result = MiniWorkflowStepFormatMount(
data_ref
);
data.value = data_ref.value;
_MiniWorkflowStepFormatMount_result
)
end }
sequence = { "FormatMount" => { :finish => :finish } }
title = _("Add tmpfs Mount")
widget = MiniWorkflow.Run(
title,
StorageIcons.dm_icon,
aliases,
sequence,
"FormatMount"
)
widget == :finish
end
|