UI: Rename 'obs' dir to 'UI'
This is to prevent confusion both when prefixing commits and when reading the directory structure for the first time.
This commit is contained in:
10
UI/vertical-scroll-area.cpp
Normal file
10
UI/vertical-scroll-area.cpp
Normal file
@@ -0,0 +1,10 @@
|
||||
#include <QResizeEvent>
|
||||
#include "vertical-scroll-area.hpp"
|
||||
|
||||
void VScrollArea::resizeEvent(QResizeEvent *event)
|
||||
{
|
||||
if (!!widget())
|
||||
widget()->setMaximumWidth(event->size().width());
|
||||
|
||||
QScrollArea::resizeEvent(event);
|
||||
}
|
Reference in New Issue
Block a user