ToolboxErrorPage.qml 534 B

1234567891011121314151617181920212223
  1. // Copyright (c) 2018 Ultimaker B.V.
  2. // Toolbox is released under the terms of the LGPLv3 or higher.
  3. import QtQuick 2.10
  4. import QtQuick.Controls 1.4
  5. import QtQuick.Controls.Styles 1.4
  6. Rectangle
  7. {
  8. id: page
  9. width: parent.width
  10. height: parent.height
  11. color: "transparent"
  12. Label
  13. {
  14. text: catalog.i18nc("@info", "Could not connect to the Cura Package database. Please check your connection.")
  15. anchors
  16. {
  17. centerIn: parent
  18. }
  19. renderType: Text.NativeRendering
  20. }
  21. }