mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-30 17:57:02 +00:00
#719 null swf name in Proxy after cancelling rename dialog
This commit is contained in:
@@ -213,8 +213,10 @@ public class ProxyFrame extends AppFrame implements ActionListener, CatchedListe
|
||||
if (swfList.getSelectedIndex() > -1) {
|
||||
Replacement r = listModel.getElementAt(swfList.getSelectedIndex());
|
||||
String s = View.showInputDialog("URL", r.urlPattern);
|
||||
r.urlPattern = s;
|
||||
listModel.dataChanged(swfList.getSelectedIndex());
|
||||
if (s != null) {
|
||||
r.urlPattern = s;
|
||||
listModel.dataChanged(swfList.getSelectedIndex());
|
||||
}
|
||||
}
|
||||
break;
|
||||
case ACTION_CLEAR:
|
||||
|
||||
Reference in New Issue
Block a user