diff --git a/source/ncui/core/window.d b/source/ncui/core/window.d index c0cf97c..2031901 100644 --- a/source/ncui/core/window.d +++ b/source/ncui/core/window.d @@ -46,7 +46,13 @@ public: ncuiNotErr!wrefresh(_window); } - void put(int y, int x, string s) { + void noutrefresh() + { + ncuiNotErr!wnoutrefresh(_window); + } + + void put(int y, int x, string s) + { ncuiNotErr!mvwaddnstr(_window, y, x, s.toStringz, s.length.to!int); }