Skip to content

Commit

Permalink
Merge pull request #6 from sylvestre/master
Browse files Browse the repository at this point in the history
Various minor fixes
  • Loading branch information
clarete committed Oct 16, 2012
2 parents 88af26c + 38e7cab commit 20105e1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@

* src/guake.py: Added a filter to choose only image files in prefs dialog

* src/guake.py: Added a error handling for bg_filechooser in prefs dialog
* src/guake.py: Added an error handling for bg_filechooser in prefs dialog

2007-06-19 Lincoln de Sousa <[email protected]>

Expand Down
8 changes: 7 additions & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,19 @@ DEPENDENCIES
* python-notify
* python-dbus
* python-gconf
* python-xdg

To build guake, you will need the following packages too:
* python-dev
* gtk+-2.0-dev
* pygtk-dev
* gconf2-dev (to use some autoconf stuff)

Under Debian/Ubuntu, the following command should install all the build
dependencies:
sudo apt-get build-dep guake


INSTALLATION
~~~~~~~~~~~~
We are using an autotools based installation, so if you got the source
Expand All @@ -67,7 +73,7 @@ of guake from a release file, please do the following::

If you receive a message asking you if you have installed
guake.schemas properly when launching guake, it means that your
default sysconfdir is different from the one choosen by autotools. To
default sysconfdir is different from the one chosen by autotools. To
fix that, you probably have to append the param `--sysconfdir=/etc' to
your `./configure' call, like this::

Expand Down
2 changes: 1 addition & 1 deletion src/globalhotkeys/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
- Run every test from a terminal, all messages will be displayed there.
- Globalhotkeys module depends on gtk, so if you dont import gtk before call
- Globalhotkeys module depends on gtk, so if you don't import gtk before call
any funcion in that module, you will see some warnings on your terminal =D
- globalhotkeys.init MUST be called before binding/unbinding keys.
Expand Down
6 changes: 3 additions & 3 deletions src/guake
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ class GConfHandler(object):
def default_font_toggled(self, client, connection_id, entry, data):
"""If the gconf var use_default_font be changed, this method
will be called and will change the font style to the gnome
default or to the choosen font in style/font/style in all
default or to the chosen font in style/font/style in all
terminals open.
"""
if entry.value.get_bool():
Expand Down Expand Up @@ -475,7 +475,7 @@ class GuakeTerminal(vte.Terminal):

def button_press(self, terminal, event):
"""Handles the button press event in the terminal widget. If
any match string is caught, another aplication is open to
any match string is caught, another application is open to
handle the matched resource uri.
"""
self.matched_value = ''
Expand Down Expand Up @@ -614,7 +614,7 @@ class Guake(SimpleGladeApp):
return True
self.window.connect('delete-event', destroy)

# Flag to completly disable losefocus hiding
# Flag to completely disable losefocus hiding
self.disable_losefocus_hiding = False

# this line is important to resize the main window and make it
Expand Down

0 comments on commit 20105e1

Please sign in to comment.