diff options
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/fs/partitioning_wizard.pm | 2 | ||||
-rw-r--r-- | perl-install/share/diskdrake.css | 5 |
3 files changed, 2 insertions, 7 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 0f416ed98..225afc2fb 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- diskdrake: remove deprecated GtkPaned:handle-size style property (mga#32063) + Version 18.64 - 24 June 2023 - Updated translations diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index 9bd0aacf7..6e77f3eff 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -383,8 +383,6 @@ sub create_display_box { $hpane->pack1($part_widget, 1, 0); $hpane->pack2($mdv_widget, 1, 0); $hpane->set_position(ceil($ratio * $entry->{req_size})); - my $style_context = $hpane->get_style_context; - $style_context->add_class("resize_partition"); ugtk3::gtkset_size_request($hpane, $entry->{width}, 0); ugtk3::gtkpack__($display_box, $hpane); diff --git a/perl-install/share/diskdrake.css b/perl-install/share/diskdrake.css index 0cb04a238..5bcb13bd5 100644 --- a/perl-install/share/diskdrake.css +++ b/perl-install/share/diskdrake.css @@ -82,11 +82,6 @@ padding: 1px; } -GtkPaned.resize_partition { - -GtkPaned-handle-size: 5; - margin: 0; -} - .pane-separator { background-color: white; background-image: none; |