Skip to content
This repository has been archived by the owner on Jun 14, 2018. It is now read-only.

Commit

Permalink
add copy address in the menu of the address page
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit HERVIER committed Apr 12, 2013
1 parent 87dca95 commit c6e45d9
Show file tree
Hide file tree
Showing 23 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions bitpurse/qml/main.qml
Expand Up @@ -57,6 +57,7 @@ PageStackWindow {
objectName: 'requestPage'
}


ToolBarLayout {
id: mainTools
visible: false
Expand Down Expand Up @@ -133,11 +134,12 @@ PageStackWindow {
Qt.resolvedUrl("AboutPage.qml")));
}

/*MenuItem { text: qsTr("Help");
onClicked: pageStack.push(
Qt.createComponent(
Qt.resolvedUrl("HelpPage.qml")));
}*/
MenuItem { text: qsTr("Copy address");
visible: pageStack.currentPage.objectName == 'addressPage'
onClicked:
WalletController.putAddrInClipboard(
WalletController.currentAddress);
}


MenuItem { text: qsTr("Settings");
Expand Down Expand Up @@ -192,4 +194,4 @@ PageStackWindow {
}
}
]
}
}
2 changes: 1 addition & 1 deletion bitpurse/settings.py
Expand Up @@ -50,7 +50,7 @@ def check_default_and_load(self):
elif 'storepasskey' not in self.config.options('Security'):
self._write_default()
elif 'fiatcurrency' not in self.config.options('General'):
self.config.set('General','fiatCurrency', 'EUR')
self.config.set('General', 'fiatCurrency', 'EUR')

def _write_default(self):
''' Write the default config'''
Expand Down
Binary file removed screenshots/bitpurse_screenshot_1.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_2.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_3.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_4.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_5.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_6.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_7.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_about.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_address.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_address_ovi.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_contextmenu.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_load.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_menu.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_request.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_send.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_send_ovi.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_settings.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_splash.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_wallet.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_wallet_ovi.png
Binary file not shown.
Binary file removed screenshots/bitpurse_screenshot_welcome.png
Binary file not shown.

0 comments on commit c6e45d9

Please sign in to comment.