01b274f1da
This is to prevent confusion both when prefixing commits and when reading the directory structure for the first time.
11 lines
198 B
C++
11 lines
198 B
C++
#include "focus-list.hpp"
|
|
|
|
FocusList::FocusList(QWidget *parent) : QListWidget(parent) {}
|
|
|
|
void FocusList::focusInEvent(QFocusEvent *event)
|
|
{
|
|
QListWidget::focusInEvent(event);
|
|
|
|
emit GotFocus();
|
|
}
|