Skip to content

Commit

Permalink
fix: draggable and browser view
Browse files Browse the repository at this point in the history
  • Loading branch information
h13i32maru committed May 17, 2021
1 parent 5937f2f commit aece628
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Renderer/Fragment/Browser/BrowserLoadFragment.tsx
Expand Up @@ -257,6 +257,15 @@ export class BrowserLoadFragment extends React.Component<Props, State> {
// }

render() {
// v1.0.4で起動 -> issue表示 -> コメントやリンク操作ができない不具合がでた
// - windowsでは起きていない
// - cmd + 1やzoom操作をすると直る
// - どうやらドラッグ設定(DraggableHeader)のなにかの不具合を踏んだぽい
// - BrowserViewが表示タイミング、ドラッグ設定の表示タイミングが問題ぽい
// - とりあえずworkaroundとして対応する
// - todo: 原因を正確に確かめてちゃんと対応する
if (this.firstLoading) return null;

const showClassName = this.props.show ? '' : 'browser-load-hide';
const loadingClassName = this.state.loading ? 'browser-load-loading' : '';

Expand Down

0 comments on commit aece628

Please sign in to comment.