src/gui/components/cc_types.h: fix default key for button labels

First index = 0 not 1


Origin commit data
------------------
Branch: ni/coolstream
Commit: c8e85c36f1
Author: Thilo Graf <dbt@novatux.de>
Date: 2018-08-19 (Sun, 19 Aug 2018)



------------------
This commit was generated by Migit
This commit is contained in:
2018-08-19 21:14:55 +02:00
committed by vanhofen
parent 1b2d96111e
commit 60fff98ce7

View File

@@ -204,7 +204,7 @@ typedef struct button_label_cc
button_label_cc(): button(NULL),
text(std::string()),
locale(NONEXISTANT_LOCALE),
directKeys(1, RC_NOKEY /*CRCInput::RC_nokey*/){}
directKeys(0, RC_NOKEY /*CRCInput::RC_nokey*/){}
} button_label_cc_struct;
#define CC_WIDTH_MIN CFrameBuffer::getInstance()->scale2Res(16)