Compare commits

..

No commits in common. "9a67e076a997aab7b531d57e7e89910a34744db5" and "267598643a17f5f7a2ba1aaf0feba4d1dfbcbcbd" have entirely different histories.

3 changed files with 2 additions and 8 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required (VERSION 3.0)
project (nncmpp VERSION 1.1.0 LANGUAGES C)
project (nncmpp VERSION 1.0.0 LANGUAGES C)
# Moar warnings
if ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUCC)

2
NEWS
View File

@ -1,4 +1,4 @@
1.1.0 (2021-10-21)
1.1.0 (20xx-xx-xx)
* Now requesting and processing terminal de/focus events,
using a new "defocused" attribute for selected rows

View File

@ -3789,15 +3789,9 @@ spectrum_redraw (void)
// let's hack around it in this case
if (g.spectrum_row != -1)
{
// Don't mess up the line editor caret, when it's shown
int last_x, last_y;
getyx (stdscr, last_y, last_x);
attrset (APP_ATTR (TAB_BAR));
mvaddstr (g.spectrum_row, g.spectrum_column, g.spectrum.spectrum);
attrset (0);
move (last_y, last_x);
refresh ();
}
else