From 78f01f0c1f5d414661478082889866f69ca863ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=F8=EDk?= Date: Wed, 26 Feb 2014 19:36:08 +0100 Subject: [PATCH] Issue #361 FFDec icon is not visible on application start --- .../src/com/jpexs/decompiler/flash/gui/MainFrameRibbon.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/MainFrameRibbon.java b/trunk/src/com/jpexs/decompiler/flash/gui/MainFrameRibbon.java index e12e1d1fd..197760af5 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/MainFrameRibbon.java +++ b/trunk/src/com/jpexs/decompiler/flash/gui/MainFrameRibbon.java @@ -231,10 +231,11 @@ public final class MainFrameRibbon extends AppRibbonFrame implements MainFrame { mui.setHoverIcon(View.getResizableIcon("buttonicon_hover_256")); mui.setNormalIcon(View.getResizableIcon("buttonicon_256")); mui.setClickIcon(View.getResizableIcon("buttonicon_down_256")); - cancel(); //cancel task so it does not run again + mbutton.repaint(); } + cancel(); //cancel task so it does not run again } - }, 50, 50); + }, 1, 50); panel.setVisible(b); }