fix: set maximum of scrollbar after filtering (#5329)
This commit is contained in:
@@ -24,14 +24,6 @@ public:
|
||||
|
||||
private:
|
||||
/// Property Accessors
|
||||
/**
|
||||
* @brief Return the limit of the internal buffer
|
||||
*/
|
||||
[[nodiscard]] size_t limit() const
|
||||
{
|
||||
return this->limit_;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Return the amount of space left in the buffer
|
||||
*
|
||||
@@ -43,6 +35,14 @@ private:
|
||||
}
|
||||
|
||||
public:
|
||||
/**
|
||||
* @brief Return the limit of the queue
|
||||
*/
|
||||
[[nodiscard]] size_t limit() const
|
||||
{
|
||||
return this->limit_;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Return true if the buffer is empty
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user