diff options
author | bobzel <zzzman@gmail.com> | 2023-03-23 08:57:27 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-03-23 08:57:27 -0400 |
commit | f499698f8d8dd10c020f73528918fce41f37b4ff (patch) | |
tree | 4dd78eeac40866d4bdf4d21fc5fdae4ba69546cf /src/client/util/SettingsManager.tsx | |
parent | 2a4e86be98ad0f8d4aa4cb09b982d448b542d916 (diff) |
fixed pointer events for doc contents with onClickHanlders to be none when document or contents is selected. fixed stackingView text boxes that are focused to not scroll stackingView.
Diffstat (limited to 'src/client/util/SettingsManager.tsx')
-rw-r--r-- | src/client/util/SettingsManager.tsx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/client/util/SettingsManager.tsx b/src/client/util/SettingsManager.tsx index 6c823e80a..396d754b6 100644 --- a/src/client/util/SettingsManager.tsx +++ b/src/client/util/SettingsManager.tsx @@ -184,10 +184,6 @@ export class SettingsManager extends React.Component<{}> { <div className="preferences-check">Show full toolbar</div> </div> <div> - <input type="checkbox" onChange={e => DragManager.SetRaiseWhenDragged(!DragManager.GetRaiseWhenDragged())} checked={DragManager.GetRaiseWhenDragged()} /> - <div className="preferences-check">Raise on drag</div> - </div> - <div> <input type="checkbox" onChange={e => FontIconBox.SetShowLabels(!FontIconBox.GetShowLabels())} checked={FontIconBox.GetShowLabels()} /> <div className="preferences-check">Show button labels</div> </div> |