mirror of
https://gitlab.com/eql/EQL5.git
synced 2026-03-15 03:01:18 -07:00
extend QSELECT / QSEL to work with QML items; revision of property dialog; small revisions;
This commit is contained in:
parent
2b777c6e8c
commit
2f67ce73b4
23 changed files with 139 additions and 74 deletions
|
|
@ -88,7 +88,7 @@ void DynObject::clearEventFilters() {
|
|||
event_objects.clear(); }
|
||||
|
||||
bool DynObject::eventFilter(QObject* object, QEvent* event) {
|
||||
if(event_filters && object->isWidgetType()) {
|
||||
if(event_filters && (object->isWidgetType() || object->isWindowType())) {
|
||||
for(int i = 0; i < event_objects.size(); ++i) {
|
||||
if(!event_objects.at(i) || (object == event_objects.at(i))) {
|
||||
if(event->type() == event_types.at(i)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue