kconfig: qconf: show data column all the time

The next commit will allow users to edit "int", "hex", "string"
menus in-place from the data column.

The data column should be always displayed.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
This commit is contained in:
Masahiro Yamada
2020-08-29 17:14:11 +09:00
parent f9b918fae6
commit 669a1ee46a
2 changed files with 2 additions and 32 deletions

View File

@@ -101,7 +101,7 @@ public:
bool updateAll;
bool showName, showRange, showData;
bool showName, showRange;
enum listMode mode;
enum optionMode optMode;
struct menu *rootEntry;
@@ -196,15 +196,12 @@ public:
bool showName(void) const { return list->showName; }
bool showRange(void) const { return list->showRange; }
bool showData(void) const { return list->showData; }
public slots:
void setShowName(bool);
void setShowRange(bool);
void setShowData(bool);
signals:
void showNameChanged(bool);
void showRangeChanged(bool);
void showDataChanged(bool);
public:
ConfigList* list;
ConfigLineEdit* lineEdit;