From 2442514c1659eea6dce329666364b40e288bfdff Mon Sep 17 00:00:00 2001 From: Quentin Decaunes Date: Sat, 17 Aug 2019 17:41:35 +0200 Subject: [PATCH] fix: Tiny notification when applying ryzenAdj. --- js/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/app.js b/js/app.js index 1d60981..5b02c64 100644 --- a/js/app.js +++ b/js/app.js @@ -100,7 +100,8 @@ function applyRyzenSettings() { Sentry.captureException(new Error(err + ' - ' + output)); } else if (output) { - notification('success', 'Ryzenadj output:
' + output); + notification('success', `RyzenAdj has been applied successfully.`); + appendLog('Ryzenadj output:
' + output); saveLatestUsedSettings(); } appSettings.set('retry', false);