mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
make lines reformattable
- completely removed the old textbuffer representation ( https://github.com/shabble/irssi-docs/wiki/Notes-256-Colour#textbuffer-encoding ) - textbuffer-formats is an extra module, so if we unhook the signals it should go back to the "old way" of storing pre-rendered tex - design uses cache, original formats and list of arguments
This commit is contained in:
parent
94ae7f9cd3
commit
f95fc81130
21 changed files with 789 additions and 587 deletions
|
|
@ -43,10 +43,9 @@ static GUI_WINDOW_REC *gui_window_init(WINDOW_REC *window,
|
|||
|
||||
gui = g_new0(GUI_WINDOW_REC, 1);
|
||||
gui->parent = parent;
|
||||
gui->view = textbuffer_view_create(textbuffer_create(),
|
||||
window->width, window->height,
|
||||
settings_get_bool("scroll"),
|
||||
term_type == TERM_TYPE_UTF8);
|
||||
gui->view =
|
||||
textbuffer_view_create(textbuffer_create(window), window->width, window->height,
|
||||
settings_get_bool("scroll"), term_type == TERM_TYPE_UTF8);
|
||||
textbuffer_view_set_default_indent(gui->view,
|
||||
settings_get_int("indent"),
|
||||
!settings_get_bool("indent_always"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue