Adds handling of fit to width bool
This commit is contained in:
parent
58f98468a1
commit
e6d6599a1e
5 changed files with 32 additions and 2 deletions
|
|
@ -401,7 +401,7 @@ export class ScrollManager {
|
|||
|
||||
if (timeAxisContent) {
|
||||
// Use transform for smooth performance
|
||||
timeAxisContent.style.transform = `translateY(-${scrollTop}px)`;
|
||||
(timeAxisContent as HTMLElement).style.transform = `translateY(-${scrollTop}px)`;
|
||||
|
||||
// Debug logging (can be removed later)
|
||||
if (scrollTop % 100 === 0) { // Only log every 100px to avoid spam
|
||||
|
|
@ -529,6 +529,7 @@ export class ScrollManager {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Cleanup resources
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue