diff options
author | usodhi <61431818+usodhi@users.noreply.github.com> | 2021-01-18 14:33:26 -0500 |
---|---|---|
committer | usodhi <61431818+usodhi@users.noreply.github.com> | 2021-01-18 14:33:26 -0500 |
commit | 286673d88a412432bc3555769c223f7c3db6ff5c (patch) | |
tree | 8938245fd370bd64debfbbaa5bdf9a3f02b2cba3 /src/mobile/MobileInterface.tsx | |
parent | 39e8bd2671d70e1e8fd708c5210120a9d09b64fa (diff) | |
parent | c94a8d93ea7373af54355b5c47bf14a021cf4563 (diff) |
merged
Diffstat (limited to 'src/mobile/MobileInterface.tsx')
-rw-r--r-- | src/mobile/MobileInterface.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mobile/MobileInterface.tsx b/src/mobile/MobileInterface.tsx index c4a6433c8..c7e2d02cb 100644 --- a/src/mobile/MobileInterface.tsx +++ b/src/mobile/MobileInterface.tsx @@ -512,7 +512,7 @@ export class MobileInterface extends React.Component { return <div className="docButton" title={Doc.isDocPinned(this._activeDoc) ? "Unpin from presentation" : "Pin to presentation"} style={{ backgroundColor: isPinned ? "black" : "white", color: isPinned ? "white" : "black" }} - onClick={e => TabDocView.PinDoc(this._activeDoc, isPinned)}> + onClick={e => TabDocView.PinDoc(this._activeDoc, { unpin: isPinned })}> <FontAwesomeIcon className="documentdecorations-icon" size="sm" icon="map-pin" /> </div>; } else return (null); |