try to index media immediately on import
Since indexing is supplemental, it can be made a background task that can occur at more or less any time. So we run it as soon as possible.
This commit is contained in:
@@ -44,9 +44,5 @@ TaskView::TaskView(QWidget* parent) :
|
||||
void TaskView::AddTask(Task *t)
|
||||
{
|
||||
// Create TaskViewItem (UI representation of a Task) and connect it
|
||||
TaskViewItem* item = new TaskViewItem(central_widget_);
|
||||
|
||||
item->SetTask(t);
|
||||
|
||||
layout_->insertWidget(0, item);
|
||||
layout_->insertWidget(0, new TaskViewItem(t));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user