Skip to content

Commit

Permalink
Namecoin: Enable editing NS records in DNS dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyRand committed Dec 12, 2019
1 parent ca236fb commit 319108d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions electrum_nmc/electrum/gui/qt/configure_dns_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,10 @@ def edit_selected_record(self):
self.ui.editCNAMEAlias.setText(record_data)

self.force_one_tab(self.ui.tabCNAME)
elif record_type == "ns":
self.ui.editNSHosts.setText(record_data)

self.force_one_tab(self.ui.tabNS)

self.editing_row = row

Expand Down

0 comments on commit 319108d

Please sign in to comment.