Skip to content

Commit aece628

Browse files
committed
fix: draggable and browser view
1 parent 5937f2f commit aece628

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/Renderer/Fragment/Browser/BrowserLoadFragment.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,15 @@ export class BrowserLoadFragment extends React.Component<Props, State> {
257257
// }
258258

259259
render() {
260+
// v1.0.4で起動 -> issue表示 -> コメントやリンク操作ができない不具合がでた
261+
// - windowsでは起きていない
262+
// - cmd + 1やzoom操作をすると直る
263+
// - どうやらドラッグ設定(DraggableHeader)のなにかの不具合を踏んだぽい
264+
// - BrowserViewが表示タイミング、ドラッグ設定の表示タイミングが問題ぽい
265+
// - とりあえずworkaroundとして対応する
266+
// - todo: 原因を正確に確かめてちゃんと対応する
267+
if (this.firstLoading) return null;
268+
260269
const showClassName = this.props.show ? '' : 'browser-load-hide';
261270
const loadingClassName = this.state.loading ? 'browser-load-loading' : '';
262271

0 commit comments

Comments
 (0)