-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Replace the Get Support button with Open Trader Chat until trade period is over #4099
Conversation
@jmacxx I'm having a look at it right now. Please don't make any changes to translations except the English source file, as they are overwritten shortly before every release. |
@ripcurlx Ok, I have restored the language files to their original (de, es, pt, pt-br). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NACK - Please see my remarks
ACK functionality wise
desktop/src/main/java/bisq/desktop/main/portfolio/pendingtrades/TradeSubView.java
Outdated
Show resolved
Hide resolved
desktop/src/main/java/bisq/desktop/main/portfolio/pendingtrades/PendingTradesView.java
Outdated
Show resolved
Hide resolved
desktop/src/main/java/bisq/desktop/main/portfolio/pendingtrades/TradeSubView.java
Outdated
Show resolved
Hide resolved
desktop/src/main/java/bisq/desktop/main/portfolio/pendingtrades/steps/TradeStepView.java
Outdated
Show resolved
Hide resolved
Showing an `Open Trader Chat` button until the trade period is over will reduce the number of unnecessary support tickets and encourage trader-to-trader dialogue. If the trade timer expires without completing the button changes (as before) to open a mediation ticket. Implementation of this feature requires the button in TradeStepView to notify its parent TradeSubView which in turn notify its parent PendingTradesView that trader chat is to be opened. Basically a callback interface is passed two levels down the GUI hierarchy. Fixes #3801
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Showing an
Open Trader Chat
button until the trade period is over will reduce the number of unnecessary support tickets and encourage trader-to-trader dialogue. If the trade timer expires without completing the button changes (as before) to open a mediation ticket.Implementation of this feature requires the button in TradeStepView to notify its parent TradeSubView which in turn notify its parent PendingTradesView that trader chat is to be opened. Basically a callback interface is passed two levels down the GUI hierarchy.
Fixes #3801