mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 03:40:16 +02:00
reimplement format and length logic for the entry prompt
This commit is contained in:
parent
688fc817dd
commit
b03805eeb9
5 changed files with 54 additions and 2 deletions
|
|
@ -109,6 +109,16 @@ void gui_printtext(int xpos, int ypos, const char *str)
|
|||
next_xpos = next_ypos = -1;
|
||||
}
|
||||
|
||||
void gui_printtext_internal(int xpos, int ypos, const char *str)
|
||||
{
|
||||
next_xpos = xpos;
|
||||
next_ypos = ypos;
|
||||
|
||||
printtext_gui_internal(str);
|
||||
|
||||
next_xpos = next_ypos = -1;
|
||||
}
|
||||
|
||||
void gui_printtext_after_time(TEXT_DEST_REC *dest, LINE_REC *prev, const char *str, time_t time)
|
||||
{
|
||||
GUI_WINDOW_REC *gui;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue