Summary: | Order of quote details widget when switching with 'Tab' is not ascending | ||
---|---|---|---|
Product: | [Frameworks and Libraries] alkimia | Reporter: | Ralf Habacker <ralf.habacker> |
Component: | Online quotes widget | Assignee: | KMyMoney Devel Mailing List <kmymoney-devel> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 8.1.2 | ||
Target Milestone: | --- | ||
Platform: | Other | ||
OS: | All | ||
Latest Commit: | https://invent.kde.org/office/alkimia/-/commit/c2b7bf2496906e061aafa96af981be0c2eef124b | Version Fixed In: | 8.2 |
Sentry Crash Report: |
Description
Ralf Habacker
2023-09-23 10:02:26 UTC
Git commit 13ef16164cf63d44df56d4858cf28de126689866 by Ralf Habacker. Committed on 23/09/2023 at 12:44. Pushed by habacker into branch '8.1'. Fix tab order for edit fields in quote details widget Changing the tab order with xml '<tabstop>' tags and/or QWidget::setTabOrder() did not work, so it was necessary to adjust the order of the widgets in the ui file. FIXED-IN:8.1.3 M +107 -83 src/alkonlinequoteswidget.ui https://invent.kde.org/office/alkimia/-/commit/13ef16164cf63d44df56d4858cf28de126689866 (In reply to Ralf Habacker from comment #1) > Changing the tab order with xml '<tabstop>' tags and/or > QWidget::setTabOrder() did not work, so it was necessary to adjust the order of the widgets in the > ui file. Editing UI files with Designer changes the order of widgets, so the problem is reintroduced the next time a change is made. This means that to fix the problem in a stable way, it would be necessary to enable the use of tabstops in the xml file or QWidget::setTabOrder() in the source code. (In reply to Ralf Habacker from comment #1) > Changing the tab order with xml '<tabstop>' tags and/or > QWidget::setTabOrder() did not work Since the problem also occurs with an earlier version of QT/KDE, the reason is probably not in the QT/KDE framework. Git commit c2b7bf2496906e061aafa96af981be0c2eef124b by Thomas Baumgart. Committed on 28/07/2024 at 08:06. Pushed by tbaumgart into branch 'master'. Fix tab order in AlkOnlineQuotesWidget Apparently to disable and enable a widget has an impact on the tab order between the widgets. The solution is to reset the tab order to the desired form after the status of the widgets has been changed. FIXED-IN: 8.2 M +16 -0 src/alkonlinequotedetails.ui M +16 -0 src/alkonlinequoteswidget.cpp https://invent.kde.org/office/alkimia/-/commit/c2b7bf2496906e061aafa96af981be0c2eef124b |