This commit is contained in:
John Bintz 2012-05-03 07:42:24 -04:00
parent 0e493c1d53
commit 637b69470d
1 changed files with 4 additions and 1 deletions

View File

@ -178,7 +178,10 @@ while !exiting
if @current_icon != @prior_icon
icon.icon = Qt::Icon.new(File.expand_path("../../assets/#{@current_icon}.png", __FILE__))
icon.show if !@prior_icon
if !@prior_icon
icon.show
end
@prior_icon = @current_icon
end