add icons to menu bar

This commit is contained in:
Axel Kohlmeyer
2023-07-26 22:39:09 -04:00
parent f3e54cada1
commit a62d1be3e6
2 changed files with 84 additions and 3 deletions

View File

@ -36,7 +36,7 @@
#include <fcntl.h>
#include <thread>
StdCapture::StdCapture() : m_capturing(false), m_oldStdOut(0)
StdCapture::StdCapture() : m_oldStdOut(0), m_capturing(false)
{
// make stdout unbuffered so that we don't need to flush the stream
setvbuf(stdout, NULL, _IONBF, 0);