Update proxy to use similar named methods to new API calls

This commit is contained in:
Brett Williams
2026-06-06 01:16:53 -05:00
parent 95341e815c
commit 250aa22557
6 changed files with 31 additions and 21 deletions
+2 -2
View File
@@ -37,7 +37,7 @@ class GetEngineInfoWorker(QThread):
self.parent = parent
def run(self):
data = RenderServerProxy(socket.gethostname()).get_all_engine_info()
data = RenderServerProxy(socket.gethostname()).get_engines()
self.done.emit(data)
class SettingsWindow(QMainWindow):
@@ -549,4 +549,4 @@ if __name__ == "__main__":
app = QApplication([])
window = SettingsWindow()
window.show()
app.exec()
app.exec()