diff --git a/src/bin/config.h b/src/bin/config.h index e8a43247..979dfcfb 100644 --- a/src/bin/config.h +++ b/src/bin/config.h @@ -13,7 +13,8 @@ struct _Config_Color struct _Config { - int version; + int version; + int scrollback; struct { const char *name; const char *orig_name; /* not in EET */ @@ -32,9 +33,8 @@ struct _Config Eina_Bool inline_please; } helper; const char *theme; - const char *background; + const char *background; const char *wordsep; - int scrollback; double tab_zoom; int vidmod; Eina_Bool jump_on_keypress; diff --git a/src/bin/termio.c b/src/bin/termio.c index b24c7a00..6f64be0d 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c @@ -26,8 +26,8 @@ struct _Termio { Evas_Object_Smart_Clipped_Data __clipped_data; struct { - int size; const char *name; + int size; int chw, chh; } font; struct { @@ -45,6 +45,7 @@ struct _Termio int cx, cy; int button; } mouse; + unsigned int last_keyup; struct { char *string; int x1, y1, x2, y2; @@ -61,7 +62,6 @@ struct _Termio } link; int zoom_fontsize_start; int scroll; - unsigned int last_keyup; Eina_List *mirrors; Eina_List *seq; Evas_Object *self;