From d3d50ffc7933c7e4511d3ef2afcf327ad39b0e8d Mon Sep 17 00:00:00 2001 From: JannisX11 <jannis4236@gmail.com> Date: Wed, 4 Mar 2020 21:18:29 +0100 Subject: [PATCH] v3.4.0 --- js/interface/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/interface/actions.js b/js/interface/actions.js index cb4ff619..1b1e0ac8 100644 --- a/js/interface/actions.js +++ b/js/interface/actions.js @@ -218,7 +218,7 @@ class Action extends BarItem { } updateHoverTitle() { var text = this.description || ''; - if (this.keybind.label) { + if (this && this.keybind && this.keybind.label) { if (text) { text = `${text} (${this.keybind.label})`; } else {