https://bugs.documentfoundation.org/show_bug.cgi?id=164353

            Bug ID: 164353
           Summary: MessageDialog buttons don't respond to clicks
                    (kf5/kf6)
           Product: LibreOffice
           Version: 25.2.0.0 alpha0+
          Hardware: x86-64 (AMD64)
                OS: Linux (All)
            Status: UNCONFIRMED
          Keywords: bibisected, bisected, regression
          Severity: normal
          Priority: medium
         Component: UI
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected]
            Blocks: 102495, 145734

Sorry for not having easier steps, but I saw and bibisected this by running a
currently broken query from Base's Queries view per steps in bug 144694 comment
27. Maybe you can find some easier test target, although the SQLite3 setup
steps are quite straightforward.

After the message dialog is shown, OK and More buttons don't respond to clicks.

Bibisected with linux-64-25.2 to c392f12d3379d51d3f24d3f58a15518aef84f951
tdf#130857 qt weld: Add layout/widget for extra msg dialog controls

>From what I see, this particular dialog is created in
OSQLMessageBox::Construct() in dbaccess/source/ui/dlg/sqlmessage.cxx

In bibisecting, I used an .odb connected to the SQLite3 database with this
query saved (with Run SQL command directly active):

DROP TABLE IF EXISTS org;
CREATE TABLE org(
  name TEXT PRIMARY KEY,
  boss TEXT REFERENCES org
) WITHOUT ROWID;
INSERT INTO org VALUES('Alice',NULL);
INSERT INTO org VALUES('Bob','Alice');
INSERT INTO org VALUES('Cindy','Alice');
INSERT INTO org VALUES('Dave','Bob');
INSERT INTO org VALUES('Emma','Bob');
INSERT INTO org VALUES('Fred','Cindy');
INSERT INTO org VALUES('Gail','Cindy');

WITH RECURSIVE
  under_alice(name,level) AS (
    VALUES('Alice',0)
    UNION ALL
    SELECT org.name, under_alice.level+1
      FROM org JOIN under_alice ON org.boss=under_alice.name
     ORDER BY 2 DESC
  )
SELECT substr('..........',1,level*3) || name FROM under_alice;

So it drops the table if it exists in the beginning.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102495
[Bug 102495] [META] KDE (kf5) VCL backend bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=145734
[Bug 145734] [META] Qt6/KF6 VCL plugin bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to