Commit 70839cc630a4d994f14b47392d981888eb37c3d1

Request redraw of whole screen in Screen::draw()
Otherwise parts of it might not be updated by doupdate(), which shows up
at least on resizing when widgets don't fill the whole screen.
Author: xaizek
Author date (UTC): 2022-06-19 07:32
Committer name: xaizek
Committer date (UTC): 2022-06-19 07:32
Parent(s): dbbc9a984d4d036a43387c3d2ddf6938481952fa
Signing key: 99DC5E4DB05F6BE2
Tree: 2d8c29a16a75314ba37772afa87fa42530e9fa02
File Lines added Lines deleted
Screen.cpp 1 0
File Screen.cpp changed (mode: 100644) (index 14cc234..2f4755c)
... ... void
73 73 Screen::draw() Screen::draw()
74 74 { {
75 75 werase(stdscr); werase(stdscr);
76 wnoutrefresh(stdscr);
76 77
77 78 guts::ColorManager::get().reset(); guts::ColorManager::get().reset();
78 79 for (Widget *widget : mainWidgets) { for (Widget *widget : mainWidgets) {
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/libcursed

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/libcursed

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master