Conversation
|
@alexr00 Is a notification the best we can do here? Can't we somehow show progress in the view itself? |
|
@joaomoreno It's a webview, so we can do whatever we want in it, but I was trying to stay consistent with how we show progress elsewhere. |
|
@alexr00 A good example of what I mean is @benibenj's fix in #3729: that operation was slow so we had to show progress somewhere. The fix was to show the UI prematurely and show progress there. An alternative fix would've been to use a notification for progress and open quick open once done; this would've been a bit jarring. Maybe we need a restructuring in the view such that we can open it immediately and show progress within... but it would definitely improve the overall experience. What do you think? |
|
@joaomoreno I understand what you're saying now. Errors would be weird since we currently show them in the "Create" view and we'd need to re-open the create view on error (as errors can often be resolved by changing something in the create view), but it is doable. Opened #3743. |
Fixes #3531