<p><b>@ManfredKarrer</b> requested changes on this pull request.</p>

<hr>

<p>In <a href="https://github.com/bisq-network/bisq/pull/2521#discussion_r264093249">desktop/src/main/java/bisq/desktop/main/dao/governance/proposals/ProposalsView.java</a>:</p>
<pre style='color:#555'>> @@ -223,6 +231,20 @@ protected void activate() {
         updateViews();
     }
 
+    private void maybeShowDAOTestingFeedbackWindow() {
+        String testingPopupKey = "daoTestingFeedbackPopup";
+        if (DontShowAgainLookup.showAgain(testingPopupKey)) {
+            UserThread.runAfter(() -> {
+                if (sortedList.size() > 0 && sortedList.stream().map(proposalsListItem -> proposalsListItem.getProposal().getTxId())
</pre>
<p>Better to use <code>myProposalListService.getList()' - this gives you your own proposals and test with </code>periodService.isTxInCorrectCycle(tx.getBlockHeight(), daoStateService.getChainHeight())` if it the proposal is in the current cycle.</p>

<hr>

<p>In <a href="https://github.com/bisq-network/bisq/pull/2521#discussion_r264093666">desktop/src/main/java/bisq/desktop/main/dao/governance/proposals/ProposalsView.java</a>:</p>
<pre style='color:#555'>> @@ -203,6 +209,8 @@ protected void activate() {
 
         sortedList.comparatorProperty().bind(tableView.comparatorProperty());
 
+        maybeShowDAOTestingFeedbackWindow();
</pre>
<p>Seems that would show the popup after the user has made a proposal. We want to show the popup only after the voting phase in case the user has created a proposal or if he has voted. Sorry that I have not been more clear in the GH issue....</p>

<hr>

<p>In <a href="https://github.com/bisq-network/bisq/pull/2521#discussion_r264094268">desktop/src/main/java/bisq/desktop/main/dao/governance/result/VoteResultView.java</a>:</p>
<pre style='color:#555'>>          GUIUtil.setFitToRowsForTableView(cyclesTableView, 25, 28, 2, 4);
     }
 
+    private void maybeShowDAOTestingFeedbackWindow() {
+        String testingPopupKey = "daoTestingFeedbackPopup";
+        if (DontShowAgainLookup.showAgain(testingPopupKey)) {
+            UserThread.runAfter(() -> {
+                if (sortedCycleListItemList.size() > 0 && (sortedCycleListItemList.get(0).getResultsOfCycle().getEvaluatedProposals().stream().map(EvaluatedProposal::getProposalTxId)
+                        .flatMap(key -> bsqWalletService.getWalletTransactions().stream().map(Transaction::getHashAsString)
</pre>
<p>I would prefer here also to use the DAO domain instead the BTC domain to avoid too much dependency to the wallet.<br>
MyBlindVoteListService holds your own blind votes and with a check for the cycle you see if it is a current vote.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/bisq-network/bisq/pull/2521#pullrequestreview-212662714">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AkpZtpOyVQpekMHVSgl-hjrNJaYIGrj0ks5vVee6gaJpZM4bneVL">mute the thread</a>.<img src="https://github.com/notifications/beacon/AkpZtmPtvzsNiKBGoRMEbjN_vSnIs9SBks5vVee6gaJpZM4bneVL.gif" height="1" width="1" alt="" /></p>
<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/bisq-network/bisq","title":"bisq-network/bisq","subtitle":"GitHub repository","main_image_url":"https://github.githubassets.com/images/email/message_cards/header.png","avatar_image_url":"https://github.githubassets.com/images/email/message_cards/avatar.png","action":{"name":"Open in GitHub","url":"https://github.com/bisq-network/bisq"}},"updates":{"snippets":[{"icon":"PERSON","message":"@ManfredKarrer requested changes on #2521"}],"action":{"name":"View Pull Request","url":"https://github.com/bisq-network/bisq/pull/2521#pullrequestreview-212662714"}}}</script>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/bisq-network/bisq/pull/2521#pullrequestreview-212662714",
"url": "https://github.com/bisq-network/bisq/pull/2521#pullrequestreview-212662714",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>