diff options
author | Pascal Terjan <pterjan@gmail.com> | 2015-04-20 17:05:22 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@gmail.com> | 2015-04-20 20:45:56 +0000 |
commit | 311a3b0293a150d84c629bd265152a4e87e96107 (patch) | |
tree | 9b389fca2f942179db7f35254629f3a7f2c9cfda /perl-install | |
parent | c57eea38c00d04ad3025024045a15840c62a8806 (diff) | |
download | drakx-311a3b0293a150d84c629bd265152a4e87e96107.tar drakx-311a3b0293a150d84c629bd265152a4e87e96107.tar.gz drakx-311a3b0293a150d84c629bd265152a4e87e96107.tar.bz2 drakx-311a3b0293a150d84c629bd265152a4e87e96107.tar.xz drakx-311a3b0293a150d84c629bd265152a4e87e96107.zip |
Making the resizing handle wider
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fs/partitioning_wizard.pm | 3 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/share/themes-galaxy.css | 10 |
3 files changed, 14 insertions, 0 deletions
diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index 72e3eb8f0..ded804131 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -351,6 +351,9 @@ sub create_display_box { $hpane->pack1($part_widget, 1, 0); $hpane->pack2($mdv_widget, 1, 0); $hpane->set_position(ceil($ratio * $entry->{req_size})); + # $hpane->set_wide_handle will only be added in Gtk 3.16 + $style_context = $hpane->get_style_context(); + $style_context->add_class("wide"); ugtk3::gtkset_size_request($hpane, $entry->{width}, 0); ugtk3::gtkpack__($display_box, $hpane); diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 91dba137a..5f3f1a3e6 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -8,6 +8,7 @@ Version 16.86 - 20 April 2015 o suggest up to 20GB/20% of the windows partition (whichever is larger), previously 6GB/10% (mga#15589) o hide empty space < 2MB, we have such holes due to alignment (mga#15733) + o improve the display box (mga#15728) - speed up reading of flags from GPT partition table (mga#15621). Version 16.84 - 14 April 2015 diff --git a/perl-install/share/themes-galaxy.css b/perl-install/share/themes-galaxy.css index 6540b30c8..21d1783ae 100644 --- a/perl-install/share/themes-galaxy.css +++ b/perl-install/share/themes-galaxy.css @@ -29,3 +29,13 @@ background-color: #2859B5; color: #FFD200; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + border-style: none solid; + border-color: #a1a1a1; + border-width: 1px; } + GtkPaned.wide .pane-separator:backdrop { + border-color: #a8a8a8; } |