trename col width - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 2a0c8dcda1e5471b04ef736a55103d0254af8723 DIR parent e256bae89c32c0ba4e6fbaa7269c07b991765a11 HTML Author: thomasv <thomasv@gitorious> Date: Mon, 7 Oct 2013 17:15:24 +0200 rename col width Diffstat: M gui/qt/main_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py t@@ -157,7 +157,7 @@ class ElectrumWindow(QMainWindow): self.completions = QStringListModel() self.tabs = tabs = QTabWidget(self) - self.column_widths = self.config.get("column_widths", default_column_widths ) + self.column_widths = self.config.get("column_widths_2", default_column_widths ) tabs.addTab(self.create_history_tab(), _('History') ) tabs.addTab(self.create_send_tab(), _('Send') ) tabs.addTab(self.create_receive_tab(), _('Receive') ) t@@ -1048,7 +1048,7 @@ class ElectrumWindow(QMainWindow): for i in range(self.contacts_list.columnCount() - 1): self.column_widths["contacts"].append(self.contacts_list.columnWidth(i)) - self.config.set_key("column_widths", self.column_widths, True) + self.config.set_key("column_widths_2", self.column_widths, True) def create_contacts_tab(self):