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

"Erase All" has the same tooltip as "undo" #18

Closed
nekomaruh opened this issue Dec 17, 2021 · 2 comments
Closed

"Erase All" has the same tooltip as "undo" #18

nekomaruh opened this issue Dec 17, 2021 · 2 comments

Comments

@nekomaruh
Copy link

In "_paint_over_image.dart" consider updating this:

IconButton(
            tooltip: **textDelegate.undo**,
            icon: widget.clearAllIcon ??
                const Icon(CommunityMaterialIcons.eraser),
            onPressed: () => setState(_paintHistory.clear),
          ),

To this:

IconButton(
            tooltip: **textDelegate.clearAllProgress**,
            icon: widget.clearAllIcon ??
                const Icon(CommunityMaterialIcons.eraser),
            onPressed: () => setState(_paintHistory.clear),
          ),

I forked this project and i love it, thumbs up to the creator!!

@lively-bigyan
Copy link
Collaborator

Hello, @nekomaruh (love the name BTW). Thank you for opening up the issue and bringing it over to my attention. I shall fix it soon. Feel free to open up PRs and contribute to the package if you develop something interesting on top of it.

@nekomaruh
Copy link
Author

This issue was solved -> 3481577

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants