Fix : blank/free event non-selectable

master
Yohann Dedy 2017-03-05 11:41:34 +01:00
parent 8403e8be05
commit a59715dcee
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ eventWindow::eventWindow(QWidget *parent) :
{ {
// TO DO SET GREY COLOR TO DISABLED CELLS // TO DO SET GREY COLOR TO DISABLED CELLS
// _eventsTable->item(r,c)->setBackgroundColor(QColor().black()); // _eventsTable->item(r,c)->setBackgroundColor(QColor().black());
_eventsTable->item(r,c)->setFlags(Qt::ItemIsEnabled); _eventsTable->item(r,c)->setFlags(Qt::ItemIsSelectable);
} }
} }
} }