Changeset 280


Ignore:
Timestamp:
07/28/09 07:36:43 (3 years ago)
Author:
marc
Message:

Fixed expanding preferences for low res displays and libnotify icons, updated changelog

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r274 r280  
    110.3 (Two years later, I am still here): 
    2  * Fixed a fatal bug with some recent versions of Python/PyGTK 
    3  * Fixed some minor window width issues with popular GTK themes 
    42 * Added interface translations 
     3 * Added timestamps and enhanced error reporting to the log 
    54 * Added a favicon to the server 
    65 * Added RPM packages 
    76 * Switch to GPLv3 
    8  * Better error reporting on the main log 
    9  * Better console help and internal functions 
    10  * Don't clean out status labels when restarting server 
     7 * Fixed a fatal bug with some recent versions of Python/PyGTK affecting most distributions 
     8 * Fixed preference pane issues for low resolution displays and some minor issues with popular GTK themes 
     9 * Fixed a bug where screenshot files would be saved under the wrong extension and not erased after quitting 
     10 * Fixed duplication of Twisted reactor 
     11 * Better console help and handling of SIGINT 
    1112 * Don't check for system compatibility of Libnotify 
    1213 * Code cleanup towards PEP-8 compliance 
  • trunk/server.py

    r278 r280  
    481481            import pynotify 
    482482            # 48x48 image by default looks bad in Ubuntu 
    483             uri = "file://" + (os.path.join(self.itaka_globals.image_dir, "itaka512x512-take.png"))  
     483            uri = "file://" + (os.path.join(self.itaka_globals.image_dir, "itaka-take.png"))  
    484484             
    485485            n = pynotify.Notification(_('Screenshot taken'), _('%s captured the screen' % (self.ip)), uri) 
  • trunk/uigtk.py

    r279 r280  
    807807        # start timer, resize, catch configure-notify, set up idle handler, when idle resize to what the size should be at this point of time, repeat 
    808808        if not self.preferences_expanded: 
     809            if ((gtk.gdk.screen_height() < 800) and self.expander.get_property("expanded")): 
     810                self.expander.set_expanded(False) 
    809811            if self.timeout_expand is not None: 
    810812                """NOTE: GTK+ GtkWidget.size_request() method can give you the amount of size a widget will take 
Note: See TracChangeset for help on using the changeset viewer.