Currentj804_armhf.deb on Debian-Wheezy with current jqt ide:

The script edit window is supposed to feature 3 icons at the top:

        - Open Last Project
        - Open Project
        - Run All Lines

Only the very first icon is visible (the "undo.png" arrow).  The
other two just get outlined when the mouse hovers over their area
and their tool tips show up.

For reference:

base 624 > grep -E2 '"Run All Lines|Open( Last)? Project"'  nmain.cpp 
void Nmain::createActions()
{
  lastprojectAct = makeact("lastprojectAct","undo.png", "Open Last Project");
#ifdef QT_OS_ANDROID
  openprojectAct = makeact("openprojectAct","folder.png","Open Project");
  runallAct = makeact("runallAct","run.png","Run All Lines");
  xeditAct = makeact("xeditAct","regular.png","External editor");
  markCursorAct = makeact("markCursorAct","jump-to.png","Mark cursor");
#else
  openprojectAct = makeact("openprojectAct","folder.svg","Open Project");
  runallAct = makeact("runallAct","run.svg","Run All Lines");
#endif
}

Note how other the two missing icons are specced as ".svg" instead
of ".png" images  -- I guess they just should be all ".png" images.

(I copied the svg icons from the source directory over to the addon
image directory, next I created fake folder.svg / run.svg symlinks
to png files, neither would serve as work-around.)

                                                        Martin
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to