New answers tagged quickly
1
In Glade, select your entry and click the Common tab in the property editor on the right. Search for the Can focus property and make sure it's set to True.
0
You should be able to translate the Action's Name property just like you can elsewhere in the .desktop file. Usually this means using _Name with the untranslated string in yourapp.deskop.in, then using whatever tool it is that applies translations to .desktop files.
0
This was happening to me because I was in the /home folder (not /home/elijah) which root owned, this caused me to run quickly with sudo which in turn caused the folder it created to be owned by root. You should be running quickly create ubuntu-application jotty in your home folder without sudo, then it should work. This assumes you have ...
0
I found the solution to my own problem.
The 'can-focus' property of the Gtk.TreeView is set to False by default. Setting this to True fixes the strange selection behavior, as well as other strange behavior that might occur, like not being able to resize a column while its 'resizable' property is set to True.
1
Here's how I did it:
Change #!/usr/bin/python in #!/usr/bin/python3 on the first line of the file foo/bin/foo.
In the file foo/foo_lib/helpers.py, lines 65-70, change
# Set the logging level to show debug messages.
if opts.verbose:
logger.setLevel(logging.DEBUG)
logger.debug('logging enabled')
if opts.verbose > 1:
...
1
I can't give a full answer, but wanted to share it. If asking a programming question, always include a minimal working example so others can quickly (ha, pun intended) run and test in your code. I will have to install Quickly, create a Quickly project and change code just to see what your question is about and try to fix it, which I won't.
That being said, ...
1
I wouldn't count on the app making it into the main repositories if it were packaged that way.
You could depend on pip and run the pip-install as a post-install hook though.
0
Ok, the problem was in the file project/po/POTFILES.in. When I removed all references to files, which quickly package couldn't find, what can be seen with quickly package --verbose, it worked like a charm.
0
Had a similar problem where I couldn't type in the text entry field as well as the function not working as mentioned above.
My fix was under the common tab for the text entry widget, "can focus" = Yes
I can now enter text and the function runs.
Top 50 recent answers are included