Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sakia
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
clients
python
sakia
Commits
1d522e1f
Commit
1d522e1f
authored
9 years ago
by
inso
Browse files
Options
Downloads
Patches
Plain Diff
Fix crash in right click on transfer
parent
98560a5b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/cutecoin/gui/transactions_tab.py
+2
-2
2 additions, 2 deletions
src/cutecoin/gui/transactions_tab.py
with
2 additions
and
2 deletions
src/cutecoin/gui/transactions_tab.py
+
2
−
2
View file @
1d522e1f
...
...
@@ -9,7 +9,7 @@ from PyQt5.QtGui import QCursor
from
..gen_resources.transactions_tab_uic
import
Ui_transactionsTabWidget
from
..models.txhistory
import
HistoryTableModel
,
TxFilterProxyModel
from
..core.transfer
import
Transfer
from
..core.transfer
import
Transfer
,
TransferState
from
.contact
import
ConfigureContactDialog
from
.member
import
MemberDialog
from
.certification
import
CertificationDialog
...
...
@@ -182,7 +182,7 @@ class TransactionsTabWidget(QWidget, Ui_transactionsTabWidget):
identity
=
yield
from
self
.
app
.
identities_registry
.
future_find
(
pubkey
,
self
.
community
)
transfer
=
model
.
sourceModel
().
transfers
()[
source_index
.
row
()]
if
state_data
==
Transfer
.
REFUSED
or
state_data
==
Transfer
.
TO_SEND
:
if
state_data
==
Transfer
State
.
REFUSED
or
state_data
==
Transfer
State
.
TO_SEND
:
send_back
=
QAction
(
self
.
tr
(
"
Send again
"
),
self
)
send_back
.
triggered
.
connect
(
self
.
send_again
)
send_back
.
setData
(
transfer
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment