From a22a47bb3af90ee973ad290a3e61aff9fbf61291 Mon Sep 17 00:00:00 2001 From: Philip Waritschlager Date: Tue, 25 Jun 2019 15:04:08 +0200 Subject: [PATCH] Do not call initializeActions() They are not displayed anyway, so dont try to initalize them which currently produces an error message. Fixes #66. --- Lightdm/Chicago95/js/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lightdm/Chicago95/js/main.js b/Lightdm/Chicago95/js/main.js index eefd679..824cc88 100755 --- a/Lightdm/Chicago95/js/main.js +++ b/Lightdm/Chicago95/js/main.js @@ -215,7 +215,7 @@ function handleFocus() { // Load the list of users initializeUsers(); // Load actions (suspend, reboot, shutdown, etc.) - initializeActions(); + // initializeActions(); // Handle focusing handleFocus(); -})(); \ No newline at end of file +})();