Skip to content

Commit

Permalink
Added FIXME comments for future cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
shundhammer committed Mar 31, 2022
1 parent c3c7588 commit 57e0ddc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/modules/SlideShowCallbacks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,11 @@ def ScriptStart(patch_name, patch_version, patch_arch, script_path)
script_path
)

# FIXME maybe use a DelayedProgressPopup here?

# reset the progressbar
if UI.WidgetExists(:progressCurrentPackage)
# FIXME This widget does not exist anymore.
UI.ChangeWidget(:progressCurrentPackage, :Label, patch_full_name)
UI.ChangeWidget(:progressCurrentPackage, :Value, 0)
end
Expand All @@ -161,6 +164,7 @@ def ScriptStart(patch_name, patch_version, patch_arch, script_path)
#
def ScriptProgress(ping, output)
Builtins.y2milestone("ScriptProgress: ping:%1, output: %2", ping, output)
# FIXME maybe use a DelayedProgressPopup here?

if !output.nil? && output != ""
# remove the trailing new line character
Expand Down

0 comments on commit 57e0ddc

Please sign in to comment.