Summary: | Make lack of search results message more prominent | ||
---|---|---|---|
Product: | [Applications] dolphin | Reporter: | Andres Betts <anditosan1000> |
Component: | general | Assignee: | Dolphin Bug Assignee <dolphin-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | CC: | kfm-devel, nate |
Priority: | NOR | Keywords: | usability |
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Other | ||
OS: | Linux | ||
See Also: | https://bugs.kde.org/show_bug.cgi?id=426354 | ||
Latest Commit: | https://invent.kde.org/system/dolphin/commit/78c7429a35c9bdbcdb76fd6304210237e5dbc2f5 | Version Fixed In: | 21.04 |
Sentry Crash Report: |
Description
Andres Betts
2020-11-17 15:50:46 UTC
Yeah typically in QML-based apps we put a big placeholder message in the center of the view when this happens. We could do the same thing in Dolphin with some custom drawing. Might make sense to genericize this so that every empty view would say something like "empty folder" which could then be overridden for the search view to say "No items found". This would also allow us to implement Bug 426354. (In reply to Nate Graham from comment #1) > Yeah typically in QML-based apps we put a big placeholder message in the > center of the view when this happens. We could do the same thing in Dolphin > with some custom drawing. > > Might make sense to genericize this so that every empty view would say > something like "empty folder" which could then be overridden for the search > view to say "No items found". This would also allow us to implement Bug > 426354. Yeah, makes sense. A possibly relevant merge request was started @ https://invent.kde.org/system/dolphin/-/merge_requests/118 Git commit 78c7429a35c9bdbcdb76fd6304210237e5dbc2f5 by Elvis Angelaccio, on behalf of Nate Graham. Committed on 28/11/2020 at 19:06. Pushed by elvisangelaccio into branch 'master'. Add placeholder text for empty views Throughout our QML-based software, we now display placeholder text for empty views so that the user knows that the view is actually empty, and it's not that the software is just broken. This commit introduces the same thing for Dolphin's main view. Related: bug 426354 FIXED-IN: 21.04 M +71 -1 src/views/dolphinview.cpp M +4 -0 src/views/dolphinview.h https://invent.kde.org/system/dolphin/commit/78c7429a35c9bdbcdb76fd6304210237e5dbc2f5 |