fixed really all bugs, for real

This commit is contained in:
Simon
2025-06-03 15:05:55 +02:00
parent 0a150eb84b
commit 7c1f380184
6 changed files with 21 additions and 19 deletions

View File

@@ -122,10 +122,7 @@ bool fetch(Key &pressed) {
pressed = key_decoder.decode(out_buffer);
if (pressed.alt() || pressed.ctrl() || !pressed.valid())
return false;
else
return true;
return true;
}
void setRepeatRate(Speed speed, Delay delay) {

View File

@@ -20,7 +20,7 @@
* \ref TextWindow and only implements the method \ref TextStream::flush().
* Further formatting or special effects are implemented in \ref TextWindow.
*/
class TextStream: public OutputStream, protected TextWindow {
class TextStream: public OutputStream, public TextWindow {
// Prevent copies and assignments
TextStream(const TextStream&) = delete;
TextStream& operator=(const TextStream&) = delete;