Remove dependency on QtQml.Models

CURA-1278
This commit is contained in:
fieldOfView 2016-06-06 17:53:34 +02:00
parent 5235f74adf
commit efe3f5e4ee

View File

@ -5,7 +5,6 @@ import QtQuick 2.1
import QtQuick.Controls 1.1 import QtQuick.Controls 1.1
import QtQuick.Layouts 1.1 import QtQuick.Layouts 1.1
import QtQuick.Controls.Styles 1.1 import QtQuick.Controls.Styles 1.1
import QtQml.Models 2.2
import UM 1.1 as UM import UM 1.1 as UM
@ -207,10 +206,11 @@ UM.PreferencesPage
} }
} }
DelegateModel ListView
{ {
id: plugins id: plugins
model: UM.PluginsModel { } model: UM.PluginsModel { }
visible: false
} }
} }
} }