We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 92e66a5 + 553591b commit 6aa5558Copy full SHA for 6aa5558
lib/bindings/window/window.go
@@ -74,9 +74,9 @@ func NewWindow(options Options) *Window {
74
ObjectType: "window",
75
Args: CommandArguments{
76
RootUrl: w.Url,
77
- Title: spawn.ApplicationName,
+ Title: options.Title, // Should be using the options.Title, not spawn.ApplicationName
78
Size: size,
79
- HasFrame: !options.HasFrame,
+ HasFrame: options.HasFrame, // This was reversed, HasFrame behavior should be 'true' (has frame) and 'false' (no frame)
80
IconPath: options.IconPath,
81
},
82
}
0 commit comments