Displaying 2 results from an estimated 2 matches for "addwidget".
2018 Jun 15
2
CentOS7/Mate Qt bugs/features?
...39;]:
self.combo.addItem(a)
self.btn = QPushButton("Toggle")
self.btnClose = QPushButton("Close")
self.btnClose.clicked.connect(self.close)
layout = QVBoxLayout()
layout.addWidget(self.combo)
layout.addWidget(self.btn)
layout.addWidget(self.btnClose)
layout.setContentsMargins(50,50,50,50)
self.setLayout(layout)
self.btn.clicked.connect(self.updateComboState)
def updateComboState(s...
2006 Nov 07
2
Crash when embedding R X11 windows
Dear R developers,
I've been experimenting with embedding R X11 windows into another application
using KDE's QXEmbed on linux. Attempting to do so will crash R (with R 2.4.0,
trunk, and I know the bug has been around in prior versions). I used to think
this was related to bug #848, but I'm not sure, if / how the solution
suggested there still applies to current versions of R.