diff options
-rw-r--r-- | NEWS | 3 | ||||
-rwxr-xr-x | draklive-install | 6 |
2 files changed, 6 insertions, 3 deletions
@@ -1,3 +1,6 @@ +- define $::isInstall in diskdrake::interactive::hd_possible_actions_base, hd_gtk + directly calls it, not through hd_possible_actions + 1.17: - correctly exclude live_device when booting from hybrid USB image diff --git a/draklive-install b/draklive-install index 7d41050..f427516 100755 --- a/draklive-install +++ b/draklive-install @@ -18,9 +18,9 @@ push @::textdomains, 'draklive-install'; { use diskdrake::interactive; package diskdrake::interactive; - my $old = \&hd_possible_actions; - undef *hd_possible_actions; - *hd_possible_actions = sub { + my $old = \&hd_possible_actions_base; + undef *hd_possible_actions_base; + *hd_possible_actions_base = sub { #- for the partition wizard to show the auto-allocate option local $::isInstall = 1; &$old; |