1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 02:32:10 +02:00
falkonOfficial/src/tools/frame.cpp

15 lines
289 B
C++
Raw Normal View History

2011-03-03 15:24:59 +01:00
#include "frame.h"
Frame::Frame(QWidget *parent) :
QFrame(parent)
{
}
void Frame::mousePressEvent(QMouseEvent *event)
{
//If we proccess mouse events, then menu from bookmarkswidget
//is going to close() with clicking in free space
Q_UNUSED(event)
event->accept();
}