diff options
Diffstat (limited to 'draksnapshot-config')
-rwxr-xr-x | draksnapshot-config | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/draksnapshot-config b/draksnapshot-config index f5bf218..42b48c4 100755 --- a/draksnapshot-config +++ b/draksnapshot-config @@ -42,8 +42,6 @@ ugtk2::add_icon_path("/usr/share/draksnapshot/pixmaps/"); ######### read config -my $product_id = common::parse_LDAP_namespace_structure(cat_("$root/etc/product.id")); - my @ordered_intervals = qw(hourly daily weekly monthly); my %default_values = ( "hourly" => 6, @@ -167,7 +165,8 @@ gtkadd($my_win->{window}, 0, gtknew('HButtonBox', layout => 'start', border_width => 5, spacing => 5, children_loose => [ - $button = gtknew($product_id->{version} =~ /200[6-8]/ ? 'Button' : 'Install_Button', + # does not exist before 2009.0, if you need it, you can revert to Button type if needed ( CS4 ) + $button = gtknew('Install_Button', text => N("Advanced"), clicked => sub { $d_window->show }), ]), ]), |