Lots of updates:

1. Scrolling and click to set the cursor works.
2. GUI now uses Brass Mono as the font.
3. A lot of stability and other updates.
This commit is contained in:
2025-11-29 20:22:24 -08:00
parent 932bc3c504
commit 57bfab633d
56 changed files with 10897 additions and 1522 deletions

View File

@@ -6,12 +6,13 @@
#include "Renderer.h"
class TerminalRenderer : public Renderer {
class TerminalRenderer final : public Renderer {
public:
TerminalRenderer();
~TerminalRenderer() override;
void Draw(const Editor &ed) override;
void Draw(Editor &ed) override;
};
#endif // KTE_TERMINAL_RENDERER_H