aboutsummaryrefslogtreecommitdiffstats
path: root/src/win.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-01-11 15:07:23 -0500
committerDavid Robillard <d@drobilla.net>2023-01-11 15:17:44 -0500
commitb779b720c7eeb8244aa347ded76492f7ed956ceb (patch)
treec982aacd8dedbbe31f7bae80b60c4989d8fed839 /src/win.c
parent916f989661fd53f42740a9469c80f6396993741f (diff)
downloadpugl-b779b720c7eeb8244aa347ded76492f7ed956ceb.tar.gz
pugl-b779b720c7eeb8244aa347ded76492f7ed956ceb.tar.bz2
pugl-b779b720c7eeb8244aa347ded76492f7ed956ceb.zip
Clean up puglRealize() implementations
Diffstat (limited to 'src/win.c')
-rw-r--r--src/win.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/win.c b/src/win.c
index 13184aa..b3ecf7f 100644
--- a/src/win.c
+++ b/src/win.c
@@ -279,13 +279,9 @@ puglRealize(PuglView* view)
return st;
}
- if (view->title) {
- puglSetWindowTitle(view, view->title);
- }
-
- if (view->transientParent) {
- puglSetTransientParent(view, view->transientParent);
- }
+ // Set basic window hints and attributes
+ puglSetWindowTitle(view, view->title ? view->title : "");
+ puglSetTransientParent(view, view->transientParent);
view->impl->scaleFactor = puglWinGetViewScaleFactor(view);
view->impl->cursor = LoadCursor(NULL, IDC_ARROW);