diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-28 15:28:34 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-28 15:30:56 +0100 |
commit | 1da607889a2d47d5dc65e59580d53b359ed029d9 (patch) | |
tree | 5cf80bbd31185a7d27c011e26f084951a9df1204 | |
parent | 823bec9a5f7eee9050cc9fdf0e0f334bc18fa18e (diff) | |
download | draklive-install-1da607889a2d47d5dc65e59580d53b359ed029d9.tar draklive-install-1da607889a2d47d5dc65e59580d53b359ed029d9.tar.gz draklive-install-1da607889a2d47d5dc65e59580d53b359ed029d9.tar.bz2 draklive-install-1da607889a2d47d5dc65e59580d53b359ed029d9.tar.xz draklive-install-1da607889a2d47d5dc65e59580d53b359ed029d9.zip |
use Gtk3 namespace instead of Gtk2
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | draklive-install | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ +- switch from gtk2 to gtk3 + 1.40 - use 'Install on Hard Disk' in both desktop files for consistency - use the new /run/mgalive/ovlsize mountpoint to determine image size diff --git a/draklive-install b/draklive-install index ca87fdf..bc1f628 100755 --- a/draklive-install +++ b/draklive-install @@ -420,7 +420,7 @@ sub copying_message { sub copying_message_with_progress_bar { my ($in, $o_title) = @_; - my $progress = Gtk2::ProgressBar->new; + my $progress = Gtk3::ProgressBar->new; my $w = copying_message($in, $o_title, $progress); my $displayed; $progress->signal_connect(expose_event => sub { $displayed = 1; 0 }); |