some fixes about uploading, some error handling
This commit is contained in:
parent
166a7ac83a
commit
326eef864b
11 changed files with 200 additions and 56 deletions
|
@ -27,7 +27,8 @@ QObject(parent)
|
|||
bool Resizer::eventFilter(QObject* obj, QEvent* event)
|
||||
{
|
||||
if (event->type() == QEvent::Resize) {
|
||||
emit resized();
|
||||
QResizeEvent* ev = static_cast<QResizeEvent*>(event);
|
||||
emit resized(ev->oldSize(), ev->size());
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue