We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From my waveform experiments, this snippet will add license to the file data:
In UI:
try: license = addon_data.freesound_list[addon_data.active_list_item].license except: license = "Unknown" row = col_list.row(align=True) split = row.split(factor=0.4, align=True) split.alignment = 'RIGHT' split.label(text="License") split = split.split(factor=0.6, align=True) split.alignment = 'LEFT' split.label(text=license)``` And this in freesound.py: ``` license: StringProperty( name="License", description="The license of this sound", default="License" )```
The text was updated successfully, but these errors were encountered:
What is the purpose? There is already
freesound/freesound.py
Line 232 in 7ac73f6
Sorry, something went wrong.
No branches or pull requests
From my waveform experiments, this snippet will add license to the file data:
In UI:
The text was updated successfully, but these errors were encountered: