windows: Fix missing title bar on prompt library
(#16302)
Closes #16297 It seems that currently we can't draw custom title bar. I have checked the `title_bar` crate, it seems to be `zed` only. Before:  After:  Release Notes: - N/A
This commit is contained in:
parent
ad44b459cd
commit
40d97fd346
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ pub fn open_prompt_library(
|
|||
WindowOptions {
|
||||
titlebar: Some(TitlebarOptions {
|
||||
title: Some("Prompt Library".into()),
|
||||
appears_transparent: true,
|
||||
appears_transparent: !cfg!(windows),
|
||||
traffic_light_position: Some(point(px(9.0), px(9.0))),
|
||||
}),
|
||||
window_bounds: Some(WindowBounds::Windowed(bounds)),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue