fix: initial scrollbar behaviour in inactive tab (#5757)

Channel views could sometimes have their scrollbar be at the top instead
of bottom when they were first activated if it had messages in it
This commit is contained in:
pajlada
2024-12-08 11:44:31 +01:00
committed by GitHub
parent 3c2a422243
commit a898f8da12
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -142,7 +142,7 @@
- Dev: 7TV's `entitlement.reset` is now explicitly ignored. (#5685)
- Dev: Qt 6.8 and later now default to the GDI fontengine. (#5710)
- Dev: Moved to condition variables when shutting down worker threads. (#5721, #5733)
- Dev: Reduced layouts in channel views when setting a channel. (#5737, #5748)
- Dev: Reduced layouts in channel views when setting a channel. (#5737, #5748, #5757)
## 2.5.1
+1 -1
View File
@@ -179,7 +179,7 @@ private:
boost::circular_buffer<ScrollbarHighlight> highlights_;
bool atBottom_{false};
bool atBottom_{true};
bool hideThumb{false};
/// Controlled by the "Hide scrollbar thumb" setting
bool settingHideThumb{false};