Revert Windows normal window title style to WS_EX_APPWINDOW (#14132)

Release Notes:

- N/A

@ConradIrwin we must revert this little change.

https://github.com/zed-industries/zed/pull/14063#issuecomment-2221867379
This commit is contained in:
Jason Lee 2024-07-11 10:49:55 +08:00 committed by GitHub
parent 3b823d4a0b
commit f1281c14dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -268,7 +268,7 @@ impl WindowsWindow {
(WS_EX_TOOLWINDOW, WINDOW_STYLE(0x0))
} else {
(
WS_EX_OVERLAPPEDWINDOW,
WS_EX_APPWINDOW,
WS_THICKFRAME | WS_SYSMENU | WS_MAXIMIZEBOX | WS_MINIMIZEBOX,
)
};