Skip to content

Commit

Permalink
SDA-4419 - Fix maximize and unmaximize button height (finos#2033)
Browse files Browse the repository at this point in the history
  • Loading branch information
KiranNiranjan authored Dec 14, 2023
1 parent 06368d8 commit 6971b7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spec/__snapshots__/windowsTitleBar.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ exports[`windows title bar should render correctly 1`] = `
title="Maximize"
>
<svg
viewBox="0 0 14 10.2"
viewBox="0 0 14 11.2"
x="0px"
y="0px"
>
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/components/windows-title-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export default class WindowsTitleBar extends React.Component<{}, IState> {
onContextMenu={this.eventHandlers.onDisableContextMenu}
onMouseDown={this.handleMouseDown}
>
<svg x='0px' y='0px' viewBox='0 0 14 10.2'>
<svg x='0px' y='0px' viewBox='0 0 14 11.2'>
<path
fill={
isDisabled
Expand All @@ -194,7 +194,7 @@ export default class WindowsTitleBar extends React.Component<{}, IState> {
onContextMenu={this.eventHandlers.onDisableContextMenu}
onMouseDown={this.handleMouseDown}
>
<svg x='0px' y='0px' viewBox='0 0 14 10.2'>
<svg x='0px' y='0px' viewBox='0 0 14 11.2'>
<path
fill={
isDisabled
Expand Down

0 comments on commit 6971b7e

Please sign in to comment.