From 4f36cf89e5a94170255f140ec31c01edbdef3e41 Mon Sep 17 00:00:00 2001 From: Jakub Suder Date: Fri, 28 Feb 2014 14:41:39 +0100 Subject: [PATCH] [#308] fixed enabling send button in send window if you typed the amount in the fiat field instead of the btc field, the button wouldn't enable --- Hive/Controllers/HISendBitcoinsWindowController.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Hive/Controllers/HISendBitcoinsWindowController.m b/Hive/Controllers/HISendBitcoinsWindowController.m index 800c2632..8e3f08bc 100644 --- a/Hive/Controllers/HISendBitcoinsWindowController.m +++ b/Hive/Controllers/HISendBitcoinsWindowController.m @@ -653,6 +653,8 @@ - (void)controlTextDidChange:(NSNotification *)notification { [self updateSendButtonEnabled]; } else if (notification.object == self.convertedAmountField) { [self updateAmountFromConvertedAmount]; + [self updateFee]; + [self updateSendButtonEnabled]; } else { [self setQRCodeScanningEnabled:self.nameLabel.stringValue.length == 0]; [self clearContact];