Bug #113660 | Tab bar in table edit is missing: features missing like insert data | ||
---|---|---|---|
Submitted: | 17 Jan 2024 10:08 | Modified: | 19 Jan 2024 12:44 |
Reporter: | Jonatan Smedsgård | Email Updates: | |
Status: | Duplicate | Impact on me: | |
Category: | MySQL Workbench: Modeling | Severity: | S1 (Critical) |
Version: | 8.0.36 build 37373333 CE | OS: | MacOS (14.2.1 (23C71)) |
Assigned to: | CPU Architecture: | ARM (M1 Pro) |
[17 Jan 2024 10:08]
Jonatan Smedsgård
[17 Jan 2024 10:12]
Jonatan Smedsgård
MySQL Workbench Table Edit Screenshot to show the issue
Attachment: MySQL Workbench Table Edit Screenshot 2024-01-17 kl. 11.11.32.png (image/png, text), 688.56 KiB.
[17 Jan 2024 10:16]
Jonatan Smedsgård
Fixed som typos in the synopsis
[17 Jan 2024 17:39]
Coren Frankel
I am having these issues too. In addition to what Jonatan Smedsgård described, selecting a table from a new or loaded diagram highlights the table name text input, but the label and the editable text in the input are not visible. The icon menu for new tables and relationship options is invisible, but I can confirm that hovering over the space reveals tooltips for the separate functions, and they still can be selected and used. Despite interactions with these elements still being possible, it is incredibly impractical and unrealistic to attempt to use them as is.
[17 Jan 2024 17:40]
Coren Frankel
MySQL Workbench invisible ERD menu options
Attachment: Screenshot 2024-01-17 at 10.34.44 AM.png (image/png, text), 108.42 KiB.
[18 Jan 2024 21:02]
Aihua Wang
I am having these issues too. Cannot see table name in the tab for editing. BTW, the same problem is both on x86_64 and arm64.
[18 Jan 2024 21:05]
Aihua Wang
Cannot see the table name.
Attachment: Screenshot 2024-01-19 at 04.53.37.png (image/png, text), 875.54 KiB.
[19 Jan 2024 12:44]
MySQL Verification Team
Hello Jonatan, Thank you for the bug report. Imho this is duplicate of Bug #113653, please see Bug #113653. Regards, Ashwini Patil
[19 Feb 2024 12:49]
Christopher Crossley
8.0.34 works on the query tool, but the design part crashes. I have tried the new fix in 8.0.36 and it is unusable so I have fallen back to using 8.0.34 on Sonoma and ARM
[23 Feb 2024 10:41]
YP Li
I have been unable to use the Models function of MySQL Workbench for nearly half a year now. Version 8.0.34 crashes upon opening a file, and in version 8.0.36, the input boxes and buttons do not display properly, severely affecting the use of this feature. I hope for a prompt fix. Do you not test your new releases? Even after releasing version 8.0.36, the most basic functions still cannot be used.
[23 Feb 2024 10:43]
YP Li
I hope for an emergency patch release for such fundamental issues, rather than waiting for the tri-monthly version release. It took half a year to move from 8.0.34 to 8.0.36; surely we won't have to wait another half a year for the next version, right?
[27 Feb 2024 10:07]
Yasushi Abe
This problem appears to be due to an AppKit update. https://developer.apple.com/documentation/macos-release-notes/appkit-release-notes-for-mac... I added clipsToBounds=YES here and there as follows and now the widget appears. <tabView clipsToBounds="YES" fixedFrame="YES" controlSize="mini" type="noTabsNoBorder" translatesAutoresizingMaskIntoConstraints="NO" id="164" userLabel="Tab View”> diff --git a/frontend/mac/components/MTogglePane.mm b/frontend/mac/components/MTogglePane.mm index d018b884d..1dc8f1ce2 100644 --- a/frontend/mac/components/MTogglePane.mm +++ b/frontend/mac/components/MTogglePane.mm @@ -67,6 +67,7 @@ _initializing = NO; _relayouting = NO; + self.clipsToBounds = YES; } return self; } @@ -134,6 +135,7 @@ object: _content]; subview.frameOrigin = NSMakePoint(0, HEADER_HEIGHT); subview.autoresizingMask = NSViewWidthSizable | NSViewMaxYMargin; + subview.clipsToBounds=YES; [self relayout]; } }