feat(win32 gui): read fontface and size from gui_config
This commit is contained in:
parent
1acc9b107e
commit
9e4e81eb0d
8 changed files with 61 additions and 14 deletions
|
@ -134,7 +134,10 @@ pub fn stop(self: *Self) void {
|
|||
// the window is created and we call dispatch_initialized
|
||||
const hwnd = self.hwnd orelse unreachable;
|
||||
gui.stop(hwnd);
|
||||
if (self.thread) |thread| thread.join();
|
||||
if (self.thread) |thread| {
|
||||
thread.join();
|
||||
self.thread = null;
|
||||
}
|
||||
}
|
||||
|
||||
pub fn stdplane(self: *Self) Plane {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue