obs-studio/UI/focus-list.cpp
jp9000 01b274f1da 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.
2016-08-27 20:19:45 -07:00

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();
}