| bio | website | timovanwynsberghe.be |
|---|---|---|
| location | Belgium | |
| age | 26 | |
| visits | member for | 1 year, 10 months |
| seen | 7 mins ago | |
| stats | profile views | 90 |
- Long-time Ubuntu user
- Admin on the Ubuntu-NL forums
- PyGTK apps developer
|
9h |
answered | Problem with Quickly text input field |
|
2d |
comment |
How can I report a suspected copyright or trademark infringement in a repo-hosted application? Minitube is distributed under the GPL license, which allows others to modify and redistribute the sourcecode as long as they don't break the license. You'll have to look at the GPL and see if Stroget breaks any of the conditions. |
|
2d |
comment |
run a program in python interpreter is ok, but receive syntax error when run script Are you sure you typed those exact lines? That's a weird place to have a SyntaxError, was your previous line correct? You can include the copy/paste of your interactive session and add the exact contents of the script. |
|
May 19 |
revised |
How to get a list of installed programmes with python? added 183 characters in body |
|
May 19 |
comment |
How to get a list of installed programmes with python? Just use the C docs. They are very good and translation to Python is very straightforward. GtkAppChooser.get_app_info() returns a GAppInfo which has a launch() method. (developer.gnome.org/gio/2.34/GAppInfo.html) |
|
May 19 |
answered | How to get a list of installed programmes with python? |
|
May 17 |
answered | Numdisplay download |
|
May 17 |
comment |
Several lines in an Entry. Quickly (with Glade) @DARDARSAAD: The documentation says you need a third include_hidden_chars boolean argument: developer.gnome.org/gtk3/3.6/… |
|
May 16 |
comment |
Several lines in an Entry. Quickly (with Glade) Also, if someone asks for more information or to elaborate, please do so. Repeating your question word by word is not helping at all! |
|
May 16 |
comment |
Several lines in an Entry. Quickly (with Glade) A GtkEntry is a single line widget. If you need more lines, use a GtkTextView. |
|
May 10 |
comment |
Spin button General properties in Glade arranged in a weird manner You should file a bugreport against Glade: bugzilla.gnome.org/enter_bug.cgi?product=glade |
|
May 9 |
answered | Gtk.SelectionMode.MULTIPLE allows selection of only one row in Gtk.TreeView |
|
May 7 |
comment |
Glade GUI in Python 2.7 crashes No problem! Python 3 should work as well, just make sure you have the correct packages installed. My guess is you're missing python3-gi. |
|
May 7 |
answered | Glade GUI in Python 2.7 crashes |
|
May 7 |
revised |
Glade GUI in Python 2.7 crashes Fixed code formatting |
|
May 5 |
answered | What is the best directory for script files? |
|
May 3 |
comment |
Appindicator Icon Animation You could try the following two lines to make sure any GUI events are done: while Gtk.events_pending(): Gtk.main_iteration() |
|
Apr 30 |
comment |
Python - NameError: global name 'plus' is not defined 99,9% of programming problems are your own code, not the programming language. That said, your problem is that plus is outside the namespace you're trying to call it in. Make sure you either defined plus or the function you're calling it in has access to it. Post the entire code on some Pastebin if possible if you need more specific help. |
|
Apr 29 |
comment |
Altering Save As dialog with only X running You could try to use the GIO GSettings for it. AFAIK, GTK depends on GIO, so it should be installed. developer.gnome.org/gio/2.34/GSettings.html |
|
Apr 29 |
comment |
How to change menu entries in AppIndicator, when it is running? How and when do you want to call add_item()? You should give a bit more information. |