From 25699bae35ce9e46e0999f38548cb9d3c1ef7f3c Mon Sep 17 00:00:00 2001
From: Inso <insomniak.fr@gmail.com>
Date: Thu, 16 Jul 2015 08:14:56 +0200
Subject: [PATCH] Fix bug #183

---
 README.md                |  2 +-
 res/ui/transfer.ui       | 30 +++++++++---------------------
 src/cutecoin/__init__.py |  2 +-
 3 files changed, 11 insertions(+), 23 deletions(-)

diff --git a/README.md b/README.md
index a33b2fc8..588d1941 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,7 @@ Qt Client for [Ucoin](http://www.ucoin.io) project.
   * The executable is generated in "build" folder, named "cutecoin"
 
 ### How to download latest release
-  * Go to the [current release](https://github.com/ucoin-io/cutecoin/releases/tag/0.10.1)
+  * Go to the [current release](https://github.com/ucoin-io/cutecoin/releases/tag/0.10.2)
   * Download the package corresponding to your operating system
   * Unzip and start "cutecoin" :)
   * Join our beta community by contacting us on ucoin forums : forum.ucoin.io
diff --git a/res/ui/transfer.ui b/res/ui/transfer.ui
index 04a1d75c..fe990928 100644
--- a/res/ui/transfer.ui
+++ b/res/ui/transfer.ui
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>399</width>
-    <height>409</height>
+    <width>496</width>
+    <height>440</height>
    </rect>
   </property>
   <property name="windowTitle">
@@ -58,7 +58,7 @@
         <item>
          <widget class="QRadioButton" name="radio_pubkey">
           <property name="text">
-           <string>Recipient public key</string>
+           <string>&amp;Recipient public key</string>
           </property>
           <property name="checked">
            <bool>false</bool>
@@ -136,7 +136,11 @@
          </widget>
         </item>
         <item>
-         <widget class="QSpinBox" name="spinbox_amount"/>
+         <widget class="QDoubleSpinBox" name="spinbox_amount">
+          <property name="decimals">
+           <number>0</number>
+          </property>
+         </widget>
         </item>
         <item>
          <widget class="QDoubleSpinBox" name="spinbox_relative">
@@ -147,7 +151,7 @@
            <number>6</number>
           </property>
           <property name="maximum">
-           <double>9999999.000000000000000</double>
+           <double>99999999999999991611392.000000000000000</double>
           </property>
          </widget>
         </item>
@@ -282,22 +286,6 @@
     </hint>
    </hints>
   </connection>
-  <connection>
-   <sender>spinbox_amount</sender>
-   <signal>valueChanged(int)</signal>
-   <receiver>TransferMoneyDialog</receiver>
-   <slot>amount_changed()</slot>
-   <hints>
-    <hint type="sourcelabel">
-     <x>199</x>
-     <y>269</y>
-    </hint>
-    <hint type="destinationlabel">
-     <x>199</x>
-     <y>200</y>
-    </hint>
-   </hints>
-  </connection>
  </connections>
  <slots>
   <slot>open_manage_wallet_coins()</slot>
diff --git a/src/cutecoin/__init__.py b/src/cutecoin/__init__.py
index 281f1840..7795d2e6 100644
--- a/src/cutecoin/__init__.py
+++ b/src/cutecoin/__init__.py
@@ -1,2 +1,2 @@
-__version_info__ = ('0', '10', '1')
+__version_info__ = ('0', '10', '2')
 __version__ = '.'.join(__version_info__)
-- 
GitLab