doorstop icon indicating copy to clipboard operation
doorstop copied to clipboard

GUI fails editing values of the extended attributes

Open jmvillalba opened this issue 4 years ago • 4 comments

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?

jmvillalba avatar Nov 25 '21 14:11 jmvillalba

Maybe this is helpful? https://opensource.com/article/19/7/create-pull-request-github

jacebrowning avatar Jan 24 '22 15:01 jacebrowning

You could also paste the updated code here for someone else to make the change.

jacebrowning avatar Jan 24 '22 15:01 jacebrowning

Hi @jacebrowning and @neerdoc !

Sorry for the delay.

I will paste the code in the milestone v2.4 (v3.1)

jmvillalba avatar Nov 04 '22 11:11 jmvillalba

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.

jmvillalba avatar Nov 04 '22 12:11 jmvillalba