-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Closed
Labels
good first issueGood for newcomersGood for newcomersplatform: macOSscope: api.jsThe @tauri-apps/api npm packageThe @tauri-apps/api npm packagetype: feature request
Description
Describe the problem
import { Window, LogicalPosition } from '@tauri-apps/api/window'
const window = new Window('sample', {
title: 'Sample',
decorations: true,
titleBarStyle: 'overlay',
width: 600,
height: 800,
trafficLightPosition: new LogicalPosition(14, 20),
^^^^^^^^^^^^^^^^^^^^
Unknown property `trafficLightPosition`
})Describe the solution you'd like
Allow to pass this property:
interface WindowOptions {
trafficLightPosition: LogicalPosition
// ...other exists propertyAlternatives considered
No response
Additional context
No response
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomersplatform: macOSscope: api.jsThe @tauri-apps/api npm packageThe @tauri-apps/api npm packagetype: feature request