Laughing Man
|
2008-04-13
, 05:22
|
Posts: 4,556 |
Thanked: 1,624 times |
Joined on Dec 2007
|
#21
|
|
2008-04-13
, 06:43
|
|
Posts: 538 |
Thanked: 168 times |
Joined on Dec 2007
@ Seattle
|
#22
|
|
2008-04-13
, 16:54
|
Posts: 155 |
Thanked: 69 times |
Joined on Apr 2008
|
#23
|
--- nokia_utilities.orig/nokia_utilities.py 2008-04-11 19:03:12.000000000 -0400 +++ nokia_utilities/nokia_utilities.py 2008-04-13 12:31:48.000000000 -0400 @@ -10,6 +10,10 @@ except: nokia=False + +GTK_VERSION_OS2008 = 2,10,12 + + def set_version_short(v): global version_short @@ -108,6 +112,8 @@ d.set_authors(['Gene Cash <gene.cashgmail.com>']) d.set_license(license) d.set_website('http://home.cfl.rr.com/genecash/nokia/index.html') + if not gtk.check_version(*GTK_VERSION_OS2008): + d.connect('response', lambda d, r: d.destroy()) d.run() # put up a timed information banner
--- to_do.orig/to_do 2008-04-11 19:01:57.000000000 -0400 +++ to_do/to_do 2008-04-13 12:34:39.000000000 -0400 @@ -603,8 +603,8 @@ view=gtk.TreeView() sw.add(view) view.set_headers_visible(True) -if nokia: - # fix buglet that messes with setting the checkboxes +if nokia and gtk.check_version(*GTK_VERSION_OS2008): + # fix buglet in OS 2007 that messes with setting the checkboxes view.set_property('allow-checkbox-mode', False) view.connect('row-activated', row_select) view.set_property('hover-selection', True)
|
2008-04-13
, 16:57
|
Posts: 155 |
Thanked: 69 times |
Joined on Apr 2008
|
#24
|
|
2008-04-14
, 03:24
|
Posts: 155 |
Thanked: 69 times |
Joined on Apr 2008
|
#25
|