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
d0bfe589
Commit
d0bfe589
authored
9 years ago
by
inso
Browse files
Options
Downloads
Patches
Plain Diff
Fixed bugs with expert mode disabled
parent
f322a2c4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/cutecoin/gui/homescreen.py
+0
-1
0 additions, 1 deletion
src/cutecoin/gui/homescreen.py
src/cutecoin/gui/transactions_tab.py
+0
-12
0 additions, 12 deletions
src/cutecoin/gui/transactions_tab.py
src/cutecoin/gui/wot_tab.py
+4
-1
4 additions, 1 deletion
src/cutecoin/gui/wot_tab.py
with
4 additions
and
14 deletions
src/cutecoin/gui/homescreen.py
+
0
−
1
View file @
d0bfe589
...
...
@@ -76,7 +76,6 @@ class HomeScreenWidget(QWidget, Ui_HomescreenWidget):
"""
if
event
.
type
()
==
QEvent
.
LanguageChange
:
self
.
retranslateUi
(
self
)
self
.
refresh_text
()
return
super
(
HomeScreenWidget
,
self
).
changeEvent
(
event
)
This diff is collapsed.
Click to expand it.
src/cutecoin/gui/transactions_tab.py
+
0
−
12
View file @
d0bfe589
...
...
@@ -137,12 +137,7 @@ class TransactionsTabWidget(QWidget, Ui_transactionsTabWidget):
else
:
amount
=
self
.
app
.
current_account
.
amount
(
self
.
community
)
maximum
=
self
.
community
.
monetary_mass
# if referential type is quantitative...
# display int values
localized_amount
=
self
.
app
.
current_account
.
current_ref
(
amount
,
self
.
community
,
self
.
app
).
localized
(
units
=
True
)
localized_minimum
=
self
.
app
.
current_account
.
current_ref
(
0
,
self
.
community
,
self
.
app
).
localized
(
units
=
True
)
localized_maximum
=
self
.
app
.
current_account
.
current_ref
(
maximum
,
self
.
community
,
self
.
app
).
localized
(
units
=
True
)
# set infos in label
self
.
label_balance
.
setText
(
...
...
@@ -151,13 +146,6 @@ class TransactionsTabWidget(QWidget, Ui_transactionsTabWidget):
localized_amount
)
)
self
.
label_balance_range
.
setText
(
self
.
tr
(
"
in [{:} ; {:}]
"
)
.
format
(
localized_minimum
,
localized_maximum
)
)
def
history_context_menu
(
self
,
point
):
index
=
self
.
table_history
.
indexAt
(
point
)
...
...
This diff is collapsed.
Click to expand it.
src/cutecoin/gui/wot_tab.py
+
4
−
1
View file @
d0bfe589
...
...
@@ -214,7 +214,10 @@ class WotTabWidget(QWidget, Ui_WotTabWidget):
"""
Refresh graph scene to current metadata
"""
if
self
.
_current_identity
!=
None
:
self
.
draw_graph
(
self
.
_current_identity
)
else
:
self
.
reset
()
@pyqtSlot
(
str
)
def
handle_identity_change
(
self
,
request
):
...
...
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