mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 07:20:49 +00:00
Issue #458 Saving font settings to preserve font panel selection after program restart: individual behavior for each file
This commit is contained in:
@@ -306,8 +306,10 @@ public class Configuration {
|
||||
return result;
|
||||
}
|
||||
|
||||
public static void addFontPair(String fontName, String systemFontName) {
|
||||
public static void addFontPair(String fileName, int fontId, String fontName, String systemFontName) {
|
||||
String key = fileName + "_" + fontId + "_" + fontName;
|
||||
Map<String, String> fontPairs = getFontPairs();
|
||||
fontPairs.put(key, systemFontName);
|
||||
fontPairs.put(fontName, systemFontName);
|
||||
StringBuilder sb = new StringBuilder();
|
||||
int i = 0;
|
||||
|
||||
Reference in New Issue
Block a user