new extension for colors and keybinds
This commit is contained in:
parent
da1f34372a
commit
4d23c1dc6d
|
@ -1446,8 +1446,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) {
|
||||||
if (!dirExists(workingDirColors)) workingDirColors=getHomeDir();
|
if (!dirExists(workingDirColors)) workingDirColors=getHomeDir();
|
||||||
hasOpened=fileDialog->openLoad(
|
hasOpened=fileDialog->openLoad(
|
||||||
"Select Color File",
|
"Select Color File",
|
||||||
{"configuration files", "*.cfg"},
|
{"configuration files", "*.cfgc"},
|
||||||
"configuration files{.cfg}",
|
"configuration files{.cfgc}",
|
||||||
workingDirColors,
|
workingDirColors,
|
||||||
dpiScale
|
dpiScale
|
||||||
);
|
);
|
||||||
|
@ -1456,8 +1456,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) {
|
||||||
if (!dirExists(workingDirKeybinds)) workingDirKeybinds=getHomeDir();
|
if (!dirExists(workingDirKeybinds)) workingDirKeybinds=getHomeDir();
|
||||||
hasOpened=fileDialog->openLoad(
|
hasOpened=fileDialog->openLoad(
|
||||||
"Select Keybind File",
|
"Select Keybind File",
|
||||||
{"configuration files", "*.cfg"},
|
{"configuration files", "*.cfgk"},
|
||||||
"configuration files{.cfg}",
|
"configuration files{.cfgk}",
|
||||||
workingDirKeybinds,
|
workingDirKeybinds,
|
||||||
dpiScale
|
dpiScale
|
||||||
);
|
);
|
||||||
|
@ -1476,8 +1476,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) {
|
||||||
if (!dirExists(workingDirColors)) workingDirColors=getHomeDir();
|
if (!dirExists(workingDirColors)) workingDirColors=getHomeDir();
|
||||||
hasOpened=fileDialog->openSave(
|
hasOpened=fileDialog->openSave(
|
||||||
"Export Colors",
|
"Export Colors",
|
||||||
{"configuration files", "*.cfg"},
|
{"configuration files", "*.cfgc"},
|
||||||
"configuration files{.cfg}",
|
"configuration files{.cfgc}",
|
||||||
workingDirColors,
|
workingDirColors,
|
||||||
dpiScale
|
dpiScale
|
||||||
);
|
);
|
||||||
|
@ -1486,8 +1486,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) {
|
||||||
if (!dirExists(workingDirKeybinds)) workingDirKeybinds=getHomeDir();
|
if (!dirExists(workingDirKeybinds)) workingDirKeybinds=getHomeDir();
|
||||||
hasOpened=fileDialog->openSave(
|
hasOpened=fileDialog->openSave(
|
||||||
"Export Keybinds",
|
"Export Keybinds",
|
||||||
{"configuration files", "*.cfg"},
|
{"configuration files", "*.cfgk"},
|
||||||
"configuration files{.cfg}",
|
"configuration files{.cfgk}",
|
||||||
workingDirKeybinds,
|
workingDirKeybinds,
|
||||||
dpiScale
|
dpiScale
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue