<div dir="ltr">It looks like you are running into this issue: 

<a href="https://docs.python.org/2/faq/programming.html#why-do-lambdas-defined-in-a-loop-with-different-values-all-return-the-same-result">https://docs.python.org/2/faq/programming.html#why-do-lambdas-defined-in-a-loop-with-different-values-all-return-the-same-result</a></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Luna Tuna <<a href="mailto:fruitfulapproach@gmail.com">fruitfulapproach@gmail.com</a>> ezt írta (időpont: 2019. máj. 16., Cs, 23:43):<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr">Hi,<div><br></div><div>Codes:</div></div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px"><div><div><div>    def setup(self):</div></div></div><div><div>        for color in self._colors:</div></div><div><div>            attr = color + ' color button'</div></div><div><div>            attr = attr.replace(' ', '_')</div></div><div><div>            button = getattr(self, attr)</div></div><div><div>            self._buttons[color] = button    </div></div><div><div>            button.clicked.connect(lambda: self.show_color_dialog(color))</div></div><div><br></div></blockquote>When you do something like this, then all connections are made to the last color in the list,<div>so clicking on "pen" color will always change "edit locked label" color (the last in list).</div><div><br>I've fixed it before by making the connection in a dummy function.  But is there a better way to resolve this?</div><div><br></div><div>Thanks.</div><div><br></div><div>-Fruitful Approach</div></div>
_______________________________________________<br>
PyQt mailing list    <a href="mailto:PyQt@riverbankcomputing.com" target="_blank">PyQt@riverbankcomputing.com</a><br>
<a href="https://www.riverbankcomputing.com/mailman/listinfo/pyqt" rel="noreferrer" target="_blank">https://www.riverbankcomputing.com/mailman/listinfo/pyqt</a><br>
</blockquote></div>