Bugfix in macro
This commit is contained in:
parent
40d6827517
commit
25954c93a2
1 changed files with 3 additions and 3 deletions
|
@ -200,9 +200,9 @@ class ExpDockWidget(QtGui.QDockWidget):
|
||||||
if not repo.remotes:
|
if not repo.remotes:
|
||||||
FreeCAD.Console.PrintWarning("No remote repository set.\n")
|
FreeCAD.Console.PrintWarning("No remote repository set.\n")
|
||||||
if not repo:
|
if not repo:
|
||||||
updatebutton.setEnabled(False)
|
self.updatebutton.setEnabled(False)
|
||||||
configbutton.setEnabled(False)
|
self.configbutton.setEnabled(False)
|
||||||
pushbutton.setEnabled(False)
|
self.pushbutton.setEnabled(False)
|
||||||
|
|
||||||
self.retranslateUi()
|
self.retranslateUi()
|
||||||
container.setLayout(grid)
|
container.setLayout(grid)
|
||||||
|
|
Loading…
Add table
Reference in a new issue