Skip to content

Commit

Permalink
examples/js/applauncher: Fix eventbox widthRequest
Browse files Browse the repository at this point in the history
- Fix issue #98

Signed-off-by: ReStranger <[email protected]>
  • Loading branch information
ReStranger committed Nov 19, 2024
1 parent 48692ff commit ebd9180
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/js/applauncher/widget/Applauncher.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default function Applauncher() {
self.hide()
}}>
<box>
<eventbox widthRequest={4000} expand onClick={hide} />
<eventbox widthRequest={400} expand onClick={hide} />
<box hexpand={false} vertical>
<eventbox heightRequest={100} onClick={hide} />
<box widthRequest={500} className="Applauncher" vertical>
Expand All @@ -81,7 +81,7 @@ export default function Applauncher() {
</box>
<eventbox expand onClick={hide} />
</box>
<eventbox widthRequest={4000} expand onClick={hide} />
<eventbox widthRequest={400} expand onClick={hide} />
</box>
</window>
}

0 comments on commit ebd9180

Please sign in to comment.