mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-12 06:34:55 +00:00
Added Replacing morphshapes (currently only same shape for start/end)
Fixed miterLimitFactor is FIXED8 value in MORPHLINESTYLE2
This commit is contained in:
@@ -826,7 +826,11 @@ public class Main {
|
||||
statusTimer.schedule(new TimerTask() {
|
||||
@Override
|
||||
public void run() {
|
||||
if (mainFrame != null && mainFrame.getPanel().getStatusPanel().isStatusHidden()) {
|
||||
if (mainFrame == null) {
|
||||
return;
|
||||
}
|
||||
MainFrameStatusPanel sp = mainFrame.getPanel().getStatusPanel();
|
||||
if (sp != null && sp.isStatusHidden()) {
|
||||
long nowTime = System.currentTimeMillis();
|
||||
if (nowTime > lastTimeStartWork + 5000) {
|
||||
mainFrame.getPanel().showOldStatus();
|
||||
|
||||
Reference in New Issue
Block a user