https://bugs.documentfoundation.org/show_bug.cgi?id=171924
--- Comment #3 from Werner Tietz <[email protected]> --- cannot reproduce ``` Version: 26.2.3.2 (AARCH64) Build ID: 70e089b17412e4cb7773e41413306b17a2328c34 CPU threads: 4; OS: Linux 6.18; UI render: default; VCL: gtk3 Locale: de-DE (de_DE.UTF-8); UI: de-DE Calc: threaded Version: 25.8.4.2 (AARCH64) Build ID: 290daaa01b999472f0c7a3890eb6a550fd74c6df CPU threads: 4; OS: Linux 6.18; UI render: default; VCL: gtk3 Locale: de-DE (de_DE.UTF-8); UI: de-DE Calc: threaded Version: 26.2.3.2 (AARCH64) Build ID: 70e089b17412e4cb7773e41413306b17a2328c34 CPU threads: 4; OS: Linux 6.18; UI render: default; VCL: gtk3 Locale: de-DE (de_DE.UTF-8); UI: de-DE Flatpak Calc: threaded but why is your code so oversophisticated? ``` from msgbox import MsgBox def messagebox( message, deko=None, title="Read_ME", buttons=('ok', 'cancel')): msg = MsgBox( XSCRIPTCONTEXT.ctx ) for button in buttons: msg.addButton( button ) msg.show( message, deko, title) return msg.Response def test(*_): messagebox( "hello World", title="Did it work", buttons=("Ja", "nein", "Vieleicht")) -- You are receiving this mail because: You are the assignee for the bug.
