Skip to content
Snippets Groups Projects
  1. Feb 23, 2022
  2. Feb 22, 2022
  3. Feb 21, 2022
  4. Feb 20, 2022
  5. Feb 19, 2022
    • Lyndon Brown's avatar
      qt/messages: fix lack of focus border on button · 72dee53e
      Lyndon Brown authored and Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen committed
      The update/clear icon-based button here gives no indication that it has
      the focus if you tab to it via keyboard navigation. Switching the button
      type from `QPushButton` to `QToolButton` fixes this.
      
      Note that the similar button in the sync tab of the effects dialog is of
      type `QToolButton` and did not exhibit the problem.
      
      (Non-functional change; no other change in appearance).
      72dee53e
    • Lyndon Brown's avatar
      qt: remove duplicate statements in effects dialog construction · f50f7fee
      Lyndon Brown authored and Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen committed
      (No functional change).
      f50f7fee
    • Lyndon Brown's avatar
      qt: fix wrong object parent · 1c8d969c
      Lyndon Brown authored and Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen committed
      The effects dialog sync tab widget should belong to the main tab widget,
      not the secondary tab widget within the video tab, which makes no sense.
      
      (No functional change).
      1c8d969c
    • Lyndon Brown's avatar
      qt: fix keyboard navigation getting stuck in effects dialog sync tab · fce27cf9
      Lyndon Brown authored and Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen committed
      If you used the `Tab` key to navigate between controls within the
      synchronization tab of the effects dialog, once you landed upon the refresh
      button (the circular icon, top-right) navigation got stuck, refusing to
      jump to a new control.
      
      I tracked down the cause to be related to the fact that the next control in
      the tab list will be the 'apply' button, but in a tab change event handler
      we hide the apply button for the sync tab. This seems to confuse Qt, though
      navigating in reverse (`Shift`+`Tab`) works fine. Flipping the focus policy
      of the button depending upon whether or not it is hidden works as a fix.
      
      Fixes #25923.
      fce27cf9
Loading