Skip to content

Commit

Permalink
Properly close popups for nested progress callbacks (bsc#1223281)
Browse files Browse the repository at this point in the history
  • Loading branch information
lslezak committed May 7, 2024
1 parent 05aae46 commit 202a352
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/packages/src/modules/PackageCallbacks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2397,7 +2397,7 @@ def ProgressEnd(id)
)

if !Mode.commandline && IsProgressPopup()
UI.CloseDialog if Builtins.size(@progress_stack) == 0
UI.CloseDialog if Builtins.size(@progress_stack) >= 0
elsif full_screen
if Ops.greater_than(Builtins.size(@progress_stack), 0)
progress_type = Ops.get_symbol(
Expand Down
6 changes: 6 additions & 0 deletions package/yast2.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon May 6 13:08:32 UTC 2024 - Ladislav Slezák <lslezak@suse.com>

- Properly close nested progress callbacks (bsc#1223281)
- 4.6.8

-------------------------------------------------------------------
Wed Feb 21 11:07:25 UTC 2024 - Michal Filka <mfilka@suse.com>

Expand Down
2 changes: 1 addition & 1 deletion package/yast2.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2
Version: 4.6.7
Version: 4.6.8

Release: 0
Summary: YaST2 Main Package
Expand Down

0 comments on commit 202a352

Please sign in to comment.