timprove fee tooltip - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 99cc3fcf908835bdba791e836bfeb1276a2fbe3e DIR parent cb709d8f57aa99d394c39ceed5af08ef548c75e3 HTML Author: ThomasV <thomasv@electrum.org> Date: Mon, 6 Mar 2017 09:10:48 +0100 improve fee tooltip Diffstat: M gui/qt/fee_slider.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- DIR diff --git a/gui/qt/fee_slider.py b/gui/qt/fee_slider.py t@@ -33,10 +33,10 @@ class FeeSlider(QSlider): if self.dyn: tooltip = fee_levels[pos] + '\n' + rate_str else: - tooltip = rate_str + tooltip = 'Fixed rate: ' + rate_str if self.config.has_fee_estimates(): i = self.config.reverse_dynfee(fee_rate) - tooltip += '\n' + (_('low fee') if i < 0 else 'Within %d blocks'%i) + tooltip += '\n' + (_('Low fee') if i < 0 else 'Within %d blocks'%i) return tooltip def update(self):