Skip to content
Snippets Groups Projects

Add functions taking GraphComponent instead of TypeName

Merged Oscar Gustafsson requested to merge typename into master
Files
3
+ 2
2
@@ -413,8 +413,8 @@ class SFGMainWindow(QMainWindow):
if dequelen > 0:
for i in range(dequelen):
action = self._recent_files_actions[i]
action.setText(rfp[i])
action.setData(QFileInfo(rfp[i]))
action.setText(str(rfp[i]))
action.setData(QFileInfo(str(rfp[i])))
action.setVisible(True)
for i in range(dequelen, self._max_recent_files):
Loading