Browse Source

Carla: Show warning dialog explainin incomplete status

tags/v0.9.0
falkTX 12 years ago
parent
commit
1e8f53e81f
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      src/carla.py

+ 11
- 0
src/carla.py View File

@@ -1166,6 +1166,8 @@ class CarlaMainW(QMainWindow, ui_carla.Ui_CarlaMainW):
else:
QTimer.singleShot(0, self, SLOT("slot_engine_start()"))

QTimer.singleShot(0, self, SLOT("slot_showInitialWarning()"))

def loadProjectLater(self):
QTimer.singleShot(0, self.load_project)

@@ -1264,6 +1266,15 @@ class CarlaMainW(QMainWindow, ui_carla.Ui_CarlaMainW):

#self.m_curEdit = widget

@pyqtSlot()
def slot_showInitialWarning(self):
QMessageBox.warning(self, self.tr("Carla is incomplete"), self.tr(""
"The version of Carla you're currently running is incomplete.\n"
"Although most things work fine, Carla is not yet in a stable state.\n"
"\n"
"It will be fully functional for the next Cadence beta release."
""))

@pyqtSlot()
def slot_engine_start(self):
self.startEngine()


Loading…
Cancel
Save