You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use Doorstop and doorstop GUI. It's a basic tool but useful (GUI). But I'm having problems with the values of the extended attributes when I edit the values trough the GUI.
I've resolve the problem, two lines code. And I would like to submit the changes, but I've dudes about the correct process.
Could you help me?
The text was updated successfully, but these errors were encountered:
jmvillalba
changed the title
Gui extended attribute corruption
Gui fails editing values of the extended attributes
Nov 25, 2021
in application.py At line 626 at function def display_extended(self, *_):
I've change this line self.text_extendedvalue.replace('1.0', tk.END, self.item.get(name, ""))
to this value = self.item.get(name, "") self.text_extendedvalue.replace('1.0', tk.END, value) self.stringvar_extendedvalue.set(value)
with this change I get that when navigating between requirements with extended attributes, sometimes these attributes are modified with the values of the previous requirement.
Hi!
I use Doorstop and doorstop GUI. It's a basic tool but useful (GUI). But I'm having problems with the values of the extended attributes when I edit the values trough the GUI.
I've resolve the problem, two lines code. And I would like to submit the changes, but I've dudes about the correct process.
Could you help me?
The text was updated successfully, but these errors were encountered: