diff --git a/src/include/terminal.h b/src/include/terminal.h index 8224f02..e445fba 100644 --- a/src/include/terminal.h +++ b/src/include/terminal.h @@ -45,6 +45,8 @@ G_BEGIN_DECLS V3270_SETTING_OVERSIZE, V3270_SETTING_HOST_CHARSET, V3270_SETTING_UNLOCK_DELAY, + V3270_SETTING_COLOR_TYPE, + V3270_SETTING_HOST_TYPE, V3270_SETTING_COUNT ///< @brief Number of setting properties. } V3270_SETTING; diff --git a/src/terminal/properties/init.c b/src/terminal/properties/init.c index 64d5675..f1eb410 100644 --- a/src/terminal/properties/init.c +++ b/src/terminal/properties/init.c @@ -49,7 +49,8 @@ { "oversize", &klass->properties.settings[V3270_SETTING_OVERSIZE] }, { "host-charset", &klass->properties.settings[V3270_SETTING_HOST_CHARSET] }, { "unlock-delay", &klass->properties.settings[V3270_SETTING_UNLOCK_DELAY] }, - + { "color-type", &klass->properties.settings[V3270_SETTING_COLOR_TYPE] }, + { "host-type", &klass->properties.settings[V3270_SETTING_HOST_TYPE] }, }; size_t ix; -- libgit2 0.21.2