summaryrefslogtreecommitdiffstats
path: root/SignalsPanel.c
diff options
context:
space:
mode:
Diffstat (limited to 'SignalsPanel.c')
-rw-r--r--SignalsPanel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/SignalsPanel.c b/SignalsPanel.c
index 559e42b9..2d1e967b 100644
--- a/SignalsPanel.c
+++ b/SignalsPanel.c
@@ -23,7 +23,7 @@ typedef struct SignalsPanel_ {
static HandlerResult SignalsPanel_eventHandler(Panel* super, int ch) {
SignalsPanel* this = (SignalsPanel*) super;
- int size = Panel_getSize(super);
+ int size = Panel_size(super);
if (ch <= 255 && isdigit(ch)) {
int signal = ch-48 + this->state;