Browse Source

This makes sure that root filename is current when the ars is closed and

reopened, and also updates $ars->{filename} to the current $entry_advanced[4].
master
freesource 23 years ago
parent
commit
1ded9fbb1b
  1. 10
      gbootroot

10
gbootroot

@ -48,7 +48,6 @@ set_locale Gtk;
# Gtk-Perl. A good reference can be found at # Gtk-Perl. A good reference can be found at
# http://projects.prosa.it/gtkperl/reference.html # http://projects.prosa.it/gtkperl/reference.html
# If you want gBootRoot to do it's stuff somewhere else, change the # If you want gBootRoot to do it's stuff somewhere else, change the
# value for $tmp1. # value for $tmp1.
my $tmp1 = "/tmp"; # tmp should be default - Cristian my $tmp1 = "/tmp"; # tmp should be default - Cristian
@ -734,6 +733,7 @@ sub advanced_boot_section {
#_______________________________________ #_______________________________________
# lib_strip_check # lib_strip_check
label_advanced("Stripping:",0,1,0,1,$table_advanced); label_advanced("Stripping:",0,1,0,1,$table_advanced);
!defined $lib_strip_check ? ($boolean = 1) !defined $lib_strip_check ? ($boolean = 1)
: ($boolean = $lib_strip_check->get_active()); : ($boolean = $lib_strip_check->get_active());
$lib_strip_check = Gtk::CheckButton->new("Libraries"); $lib_strip_check = Gtk::CheckButton->new("Libraries");
@ -874,8 +874,10 @@ sub advanced_root_section {
# gBootRoot methods # gBootRoot methods
label_advanced("Root Filename:",0,1,2,3,$table_advanced_root); label_advanced("Root Filename:",0,1,2,3,$table_advanced_root);
$ear2 = entry_advanced(1,2,2,3,4,$table_advanced_root); $ear2 = entry_advanced(1,2,2,3,4,$table_advanced_root);
$ear2->set_text("root_fs"); $ear2->set_text("root_fs") if !$entry_advanced[4];
$ars->{filename} = "root_fs"; $ars->{filename} = "root_fs" if !$entry_advanced[4];
$ear2->set_text($entry_advanced[4]) if $entry_advanced[4];
$ars->{filename} = $entry_advanced[4] if $entry_advanced[4];
ars($ars); ars($ars);
$tooltips->set_tip( $ear2, "Give the Root Filesystem file a name.", $tooltips->set_tip( $ear2, "Give the Root Filesystem file a name.",
"" ); "" );
@ -1424,6 +1426,8 @@ sub save_as {
$button->signal_connect("clicked", sub { $button->signal_connect("clicked", sub {
$entry_advanced[4] = $new_template; $entry_advanced[4] = $new_template;
$ars->{filename} = $new_template;
ars($ars);
# This is a renaming deal and this time doesn't exist in the archive # This is a renaming deal and this time doesn't exist in the archive
# or $tmp. # or $tmp.

Loading…
Cancel
Save