summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rwxr-xr-xdraklive-install6
2 files changed, 6 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index efd0915..83760f1 100644
--- a/NEWS
+++ b/NEWS
@@ -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;