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

Commit eb50d64

Browse files
authored
Merge pull request #6669 from matrix-org/palid/fix/difficult-to-grab-scrollbar
Fix remaining scrollbar/background blur regressions
2 parents a1a6350 + 1e1fc64 commit eb50d64

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

res/css/structures/_LeftPanel.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ $roomListCollapsedWidth: 68px;
5050
contain: content;
5151
position: relative;
5252
flex-grow: 1;
53+
overflow: hidden;
5354

5455
// Note: The 'room list' in this context is actually everything that isn't the tag
5556
// panel, such as the menu options, breadcrumbs, filtering, etc

src/resizer/resizer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export default class Resizer<C extends IConfig = IConfig> {
7878
}
7979

8080
public attach() {
81-
const attachment = this?.config?.handler.parentElement ?? this.container;
81+
const attachment = this?.config?.handler?.parentElement ?? this.container;
8282
attachment.addEventListener("mousedown", this.onMouseDown, false);
8383
window.addEventListener("resize", this.onResize);
8484
}

0 commit comments

Comments
 (0)