Merge pull request #6032 from jaiwanth-v/swap-rotate-buttons
Swap rotation buttons in the image viewer
This commit is contained in:
commit
1aa09cf0ae
2 changed files with 6 additions and 6 deletions
|
@ -442,16 +442,16 @@ export default class ImageView extends React.Component<IProps, IState> {
|
||||||
<div className="mx_ImageView_panel">
|
<div className="mx_ImageView_panel">
|
||||||
{info}
|
{info}
|
||||||
<div className="mx_ImageView_toolbar">
|
<div className="mx_ImageView_toolbar">
|
||||||
<AccessibleTooltipButton
|
|
||||||
className="mx_ImageView_button mx_ImageView_button_rotateCW"
|
|
||||||
title={_t("Rotate Right")}
|
|
||||||
onClick={this.onRotateClockwiseClick}>
|
|
||||||
</AccessibleTooltipButton>
|
|
||||||
<AccessibleTooltipButton
|
<AccessibleTooltipButton
|
||||||
className="mx_ImageView_button mx_ImageView_button_rotateCCW"
|
className="mx_ImageView_button mx_ImageView_button_rotateCCW"
|
||||||
title={_t("Rotate Left")}
|
title={_t("Rotate Left")}
|
||||||
onClick={ this.onRotateCounterClockwiseClick }>
|
onClick={ this.onRotateCounterClockwiseClick }>
|
||||||
</AccessibleTooltipButton>
|
</AccessibleTooltipButton>
|
||||||
|
<AccessibleTooltipButton
|
||||||
|
className="mx_ImageView_button mx_ImageView_button_rotateCW"
|
||||||
|
title={_t("Rotate Right")}
|
||||||
|
onClick={this.onRotateClockwiseClick}>
|
||||||
|
</AccessibleTooltipButton>
|
||||||
{zoomOutButton}
|
{zoomOutButton}
|
||||||
{zoomInButton}
|
{zoomInButton}
|
||||||
<AccessibleTooltipButton
|
<AccessibleTooltipButton
|
||||||
|
|
|
@ -1941,8 +1941,8 @@
|
||||||
"%(count)s people you know have already joined|one": "%(count)s person you know has already joined",
|
"%(count)s people you know have already joined|one": "%(count)s person you know has already joined",
|
||||||
"Zoom out": "Zoom out",
|
"Zoom out": "Zoom out",
|
||||||
"Zoom in": "Zoom in",
|
"Zoom in": "Zoom in",
|
||||||
"Rotate Right": "Rotate Right",
|
|
||||||
"Rotate Left": "Rotate Left",
|
"Rotate Left": "Rotate Left",
|
||||||
|
"Rotate Right": "Rotate Right",
|
||||||
"Download": "Download",
|
"Download": "Download",
|
||||||
"Information": "Information",
|
"Information": "Information",
|
||||||
"View message": "View message",
|
"View message": "View message",
|
||||||
|
|
Loading…
Reference in a new issue