dt192
dt192
Maybe try [this](https://bugreports.qt.io/plugins/servlet/mobile#issue/QTBUG-11616), [more info](https://riverbankcomputing.com/pipermail/pyqt/2009-April/022857.html) `ON WINDOWS,the resolution is to call OleFlushClipboard() before closing the application.`
Sounds good. Won't be from me though, as I don't c++.
Changing by default will result in way more people ending up on their preferred setting, as people that didn't know about the change will get it anyway and people who...
@SlySven Windows also has a setting to invert the direction, however if people are deliberately overriding the default at system level they still won't get their desired behaviour in Mudlet,...
How is this different to `gmcpTable.char.base.info.guild.foo ~= nil`? ```lua print(table.is_field(gmcpTable, "char.base.info.guild.foo")) --> true print(table.is_field(gmcpTable, "char.base.info.guild.bar")) --> false print(gmcpTable.char.base.info.guild.foo ~= nil) --> true print(gmcpTable.char.base.info.guild.bar ~= nil) --> false ```
> That is the intended design, what would you like to see instead? I'd like to see it not be intended design. What is the thinking behind this being desired...
`A good user experience and a quick feedback loop while developing` I don't think the behaviour fulfils this at all. Having scripts run just because you want to look at...
Do we have an issue open for the very closely related `scripts running when you click on their name`? Seems like fixing that at the same time this is fixed...
Was thinking about how we could show both enabled/disabled scripts and events. Came up with this. Seems less cluttered as only scripts with events would have an icon. Enabling/disabling a...
I get this, so seems like the issue is the extra uniques ``` CREATE TABLE test_uniq("_row_id" INTEGER PRIMARY KEY AUTOINCREMENT, "a" TEXT NULL DEFAULT "" UNIQUE, "b" TEXT NULL DEFAULT...