We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70de5c2 commit d0359a0Copy full SHA for d0359a0
1 file changed
src/index.tsx
@@ -275,14 +275,18 @@ function ReShadeInstallerSection() {
275
onConfirm={async (selectedShaders: string[]) => {
276
try {
277
setInstalling(true);
278
+
279
+ // Save shader preferences so future config comparisons work correctly
280
+ await saveShaderPreferences(selectedShaders);
281
282
const result = await runInstallReShade(
- addonEnabled,
- selectedVersion.value,
- autoHdrEnabled,
283
+ addonEnabled,
284
+ selectedVersion.value,
285
+ autoHdrEnabled,
286
selectedShaders
287
);
288
setInstallResult(result);
-
289
290
// If installation was successful, reload installed config
291
if (result.status === "success") {
292
const configResult = await loadInstalledConfiguration();
0 commit comments