When I attempt to add an example script to a comment, I see "Post content was flagged as spam by Akismet.com".
-
I can't post it here, so I don't know how to demonstrate it. Perhaps you've a log of the flags? Discourse is usually quite good at retaining records.
-
@RokeJulianLockhart, I've filed
QTWEBSITE-1223
, perpost/820508
. -
I've had such case once. I don't remember exactly what I did to make it go through, but it was something stupid like adding some spaces or newlines. Not sure if it will help, but maybe it's worth a try.
-
R RokeJulianLockhart referenced this topic
-
I just tried to post the minified content of
github.com/dflook/python-minifier/issues/122
topost/820408
, and couldn't. If it's not based upon size, then this is impassable. It's seriously hampering my ability to provide context in Q&As. @sierdzio, how do I escalate this? Via Jira...? -
@RokeJulianLockhart, I managed to modify the code block available at
gitlab.com/-/snippets/4805919
to bypass it, by reducing the import qualification lengths:class InitialWindow(QMainWindow): def __init__(self): central_widget = QWidget() self.setCentralWidget(central_widget) self.addDockWidget(TopDockWidgetArea, toolbar_dock) self.addDockWidget(TopDockWidgetArea, main_content_dock) self.splitDockWidget(toolbar_dock, main_content_dock, QtCore.Qt.Orientation.Vertical) central_layout = QVBoxLayout() central_widget.setLayout(central_layout)
As an example,
PyQt6
+.QtCore
+.Qt
+.DockWidgetArea
+.TopDockWidgetArea
becameTopDockWidgetArea
. -
R RokeJulianLockhart has marked this topic as solved
-
@RokeJulianLockhart, I've filed
QTWEBSITE-1223
, perpost/820508
. -
R RokeJulianLockhart has marked this topic as solved