Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6669 from matrix-org/palid/fix/difficult-to-grab-…
Browse files Browse the repository at this point in the history
…scrollbar

Fix remaining scrollbar/background blur regressions
  • Loading branch information
Palid authored Aug 24, 2021
2 parents a1a6350 + 1e1fc64 commit eb50d64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions res/css/structures/_LeftPanel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ $roomListCollapsedWidth: 68px;
contain: content;
position: relative;
flex-grow: 1;
overflow: hidden;

// Note: The 'room list' in this context is actually everything that isn't the tag
// panel, such as the menu options, breadcrumbs, filtering, etc
Expand Down
2 changes: 1 addition & 1 deletion src/resizer/resizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default class Resizer<C extends IConfig = IConfig> {
}

public attach() {
const attachment = this?.config?.handler.parentElement ?? this.container;
const attachment = this?.config?.handler?.parentElement ?? this.container;
attachment.addEventListener("mousedown", this.onMouseDown, false);
window.addEventListener("resize", this.onResize);
}
Expand Down

0 comments on commit eb50d64

Please sign in to comment.