mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-21 06:35:34 +00:00
Added #2176 Ignoring letter spacing on text search (only applies to global search, not to search inside text
Fixed #2176 Reset letterspacing on text import
This commit is contained in:
@@ -2973,7 +2973,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
||||
|
||||
boolean ignoreCase = searchDialog.ignoreCaseCheckBox.isSelected();
|
||||
boolean regexp = searchDialog.regexpCheckBox.isSelected();
|
||||
|
||||
|
||||
boolean scriptSearch = searchDialog.searchInASRadioButton.isSelected()
|
||||
|| searchDialog.searchInPCodeRadioButton.isSelected();
|
||||
if (scriptSearch) {
|
||||
@@ -3144,7 +3144,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
||||
for (Tag tag : swf.getTags()) {
|
||||
if (tag instanceof TextTag) {
|
||||
TextTag textTag = (TextTag) tag;
|
||||
if (pat.matcher(textTag.getFormattedText(false).text).find()) {
|
||||
if (pat.matcher(textTag.getFormattedText(true).text).find()) {
|
||||
found.add(textTag);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user