Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mw accessible overlay #6

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open

Mw accessible overlay #6

wants to merge 10 commits into from

Commits on Jun 17, 2024

  1. Find/Replace overlay: fix missing icon

    Reintroduces Icons for opening/closing the replace area of the overlay.
    
    fixes eclipse-platform#1960
    Wittmaxi authored and iloveeclipse committed Jun 17, 2024
    Configuration menu
    Copy the full SHA
    a868476 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2024

  1. Configuration menu
    Copy the full SHA
    827687f View commit details
    Browse the repository at this point in the history
  2. Clean Up Find Replace Overlay Icons

    - The icons are part of a local toolbar. Therefore move them from the
      "obj" folder to the "lcl16" folder.
    - Fix file name for high resolution icons for select_prev and
      select_prev icons
    - Make more clear what's the file name of and icon and what's it's key
    
    Fixes: eclipse-platform#1977
    BeckerWdf committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    c93e6c3 View commit details
    Browse the repository at this point in the history
  3. Fix NPE in legacyActionLabelSupport

    If command is null a NPE occurs even though from the code it seems this
    should be handled by a fallback.
    
    This replaces Optional.of with Optional.ofNullable to account for that
    case.
    laeubi committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    954bc58 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2024

  1. Configuration menu
    Copy the full SHA
    1acae4f View commit details
    Browse the repository at this point in the history
  2. remove unnecessary casts (eclipse-platform#1988)

    * remove unnecessary casts
    stephan-herrmann committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    160dfa8 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2024

  1. Refresh option only available for projects eclipse-platform#1904

    Returns functionality whereby open projects _and_ non-project resources get the 'refresh' contextual menu (option was removed for non-project resources via the fix @ eclipse-platform/eclipse.platform#876 ).
    DaveCarpeneto authored and mickaelistria committed Jun 26, 2024
    Configuration menu
    Copy the full SHA
    d6c128e View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2024

  1. Fix NPE in UndoManager2.addUndo fixes eclipse-platform#2004

    TriggeredOperations.getTriggeringOperation() can return null after
    TriggeredOperations.remove()
    
    eclipse-platform#2004
    EcljpseB0T authored and jukzi committed Jun 27, 2024
    Configuration menu
    Copy the full SHA
    9d6981f View commit details
    Browse the repository at this point in the history
  2. Find/Replace overlay: remove search scope when leaving overlay eclips…

    …e-platform#1919
    
    Replace the FocusListener with a ShellAdapter which will remove the
    search scope as soon as the overlay is left.
    The FocusListener didn't listen to the case where the focus is in the
    search bar and the search bar is left (and the overlay is left
    implicitly)
    
    fixes eclipse-platform#1919
    Wittmaxi authored and HeikoKlare committed Jun 27, 2024
    Configuration menu
    Copy the full SHA
    fc44255 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2024

  1. Make the ToolBar in the Find/Replace Overlay accessible eclipse-platf…

    …orm#1910
    
    Makes the Find/Replace Overlay options accessible by tabbing through the different option buttons.
    Implements a new "AccessibleToolBar" class which wraps the ToolBar and
    allows for being natively accessible by using the normal traversal mechanism provided by SWT.
    
    fixes eclipse-platform#1910
    Wittmaxi authored and HeikoKlare committed Jun 28, 2024
    Configuration menu
    Copy the full SHA
    7642988 View commit details
    Browse the repository at this point in the history