diff --git a/package/yast2-storage-ng.changes b/package/yast2-storage-ng.changes index 245475deb..af8dce679 100644 --- a/package/yast2-storage-ng.changes +++ b/package/yast2-storage-ng.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Thu Mar 11 00:01:59 UTC 2021 - David Diaz + +- Stop using the question mark icon in the recursive deletion + confirm dialog (bsc#1183088). +- 4.3.48 + ------------------------------------------------------------------- Tue Mar 9 16:40:38 UTC 2021 - José Iván López González diff --git a/package/yast2-storage-ng.spec b/package/yast2-storage-ng.spec index 80a359332..b3ff10022 100644 --- a/package/yast2-storage-ng.spec +++ b/package/yast2-storage-ng.spec @@ -16,7 +16,7 @@ # Name: yast2-storage-ng -Version: 4.3.47 +Version: 4.3.48 Release: 0 Summary: YaST2 - Storage Configuration License: GPL-2.0-only OR GPL-3.0-only diff --git a/src/lib/y2partitioner/confirm_recursive_delete.rb b/src/lib/y2partitioner/confirm_recursive_delete.rb index 242e89ca0..82f67f3bf 100644 --- a/src/lib/y2partitioner/confirm_recursive_delete.rb +++ b/src/lib/y2partitioner/confirm_recursive_delete.rb @@ -59,21 +59,18 @@ def confirm_recursive_delete(devices, headline, label_before, label_after) # @param button_term [Yast::UI::Term] # @return [Boolean] def fancy_question(headline, label_before, rich_text, label_after, button_term) - layout = VBox( - VSpacing(0.4), - HBox( - Top(Yast::Icon.Simple("question")), - HSpacing(1), - VBox( - Left(Heading(headline)), - VSpacing(0.2), - Left(Label(label_before)), - VSpacing(0.2), - Left(RichText(rich_text)), - VSpacing(0.2), - Left(Label(label_after)), - button_term - ) + layout = MarginBox( + 1.45, + 0.5, + VBox( + Left(Heading(headline)), + VSpacing(0.2), + Left(Label(label_before)), + VSpacing(0.2), + Left(RichText(rich_text)), + VSpacing(0.2), + Left(Label(label_after)), + button_term ) )