fix indent (#183)

This commit is contained in:
Leigh Scott 2017-08-26 16:35:45 +01:00 committed by Clement Lefebvre
parent a082473a66
commit ce675497d1
12 changed files with 23 additions and 29 deletions

View File

@ -3,4 +3,3 @@
import compileall
compileall.compile_dir(".", force=1)

View File

@ -62,8 +62,8 @@ class GlobalKeyBinding(GObject.GObject, threading.Thread):
def map_modifiers(self):
gdk_modifiers =(Gdk.ModifierType.CONTROL_MASK, Gdk.ModifierType.SHIFT_MASK, Gdk.ModifierType.MOD1_MASK,
Gdk.ModifierType.MOD2_MASK, Gdk.ModifierType.MOD3_MASK, Gdk.ModifierType.MOD4_MASK, Gdk.ModifierType.MOD5_MASK,
Gdk.ModifierType.SUPER_MASK, Gdk.ModifierType.HYPER_MASK)
Gdk.ModifierType.MOD2_MASK, Gdk.ModifierType.MOD3_MASK, Gdk.ModifierType.MOD4_MASK, Gdk.ModifierType.MOD5_MASK,
Gdk.ModifierType.SUPER_MASK, Gdk.ModifierType.HYPER_MASK)
self.known_modifiers_mask = 0
for modifier in gdk_modifiers:
if "Mod" not in Gtk.accelerator_name(0, modifier) or "Mod4" in Gtk.accelerator_name(0, modifier):

View File

@ -702,7 +702,7 @@ class MenuWin( object ):
def showPreferences( self, action, userdata = None ):
# Execute( "mateconf-editor /apps/mintMenu" )
# Execute( "mateconf-editor /apps/mintMenu" )
Execute( os.path.join( PATH, "mintMenuConfig.py" ) )
def showMenuEditor( self, action, userdata = None ):
@ -751,7 +751,7 @@ class MenuWin( object ):
screenWidth = Gdk.Screen.width()
if self.applet.get_orient() == MatePanelApplet.AppletOrient.UP or self.applet.get_orient() == MatePanelApplet.AppletOrient.DOWN:
if entryX + ourWidth < screenWidth or entryX + entryWidth / 2 < screenWidth / 2:
# Align to the left of the entry
# Align to the left of the entry
newX = entryX
else:
# Align to the right of the entry
@ -805,7 +805,7 @@ class MenuWin( object ):
if de in ["gnome", "gnome-shell", "mate", "kde", "xfce"]:
self.de = de
elif de in ['cinnamon', 'x-cinnamon']:
self.de = 'cinnamon'
self.de = 'cinnamon'
else:
if os.path.exists("/usr/bin/caja"):
self.de = "mate"
@ -826,4 +826,3 @@ def quit_all(widget):
MatePanelApplet.Applet.factory_main("MintMenuAppletFactory", True,
MatePanelApplet.Applet.__gtype__,
applet_factory, None)

View File

@ -515,7 +515,7 @@ class mintMenuConfig( object ):
self.systemHeightButton.set_sensitive(False)
def updatePlacesGSettings(self, treemodel, path, iter = None, new_order = None):
# Do only if not partway though an append operation; Append = insert+change+change and each creates a signal
# Do only if not partway though an append operation; Append = insert+change+change and each creates a signal
if ((iter == None) or (self.customplacestreemodel.get_value(iter, 1) != None)):
treeiter = self.customplacestreemodel.get_iter_first()
customplacenames = [ ]

View File

@ -222,7 +222,7 @@ class pluginclass( object ):
# self.searchButton.connect( "button_release_event", self.SearchWithButton )
try:
# GSettings stuff
# GSettings stuff
self.settings = EasyGSettings( "com.linuxmint.mintmenu.plugins.applications" )
self.GetGSettingsEntries()
self.settings.notifyAdd( "icon-size", self.changeIconSize )
@ -792,7 +792,7 @@ class pluginclass( object ):
# We're restricting our search...
self.add_search_suggestions(text)
#if (len(self.current_results) > 0):
#self.add_apt_filter_results_sync(self.current_results, text)
#self.add_apt_filter_results_sync(self.current_results, text)
#else:
GLib.timeout_add (300, self.add_apt_filter_results, text)
else:

View File

@ -17,7 +17,7 @@ from filemonitor import monitor as filemonitor
class IconManager(GObject.GObject):
__gsignals__ = {
"changed" : (GObject.SignalFlags.RUN_LAST, None, () )
"changed" : (GObject.SignalFlags.RUN_LAST, None, () )
}
def __init__( self ):

View File

@ -90,5 +90,3 @@ class EasyGSettings:
setattr( obj, varName, settings.get_boolean(key) )
else:
setattr( obj, varName, settings.get_value(key) )

View File

@ -44,4 +44,3 @@ def Execute( cmd , commandCwd=None):
except Exception, detail:
print detail
return False

View File

@ -41,7 +41,7 @@ if hasInotify:
def fileChanged(self, event ):
if event.wd in self.callbacks:
# print event.path
# print event.path
callback = self.callbacks[event.wd]
if callback[1]:
GLib.idle_add( callback[0], callback[1] )

View File

@ -199,9 +199,9 @@ class pluginclass:
if ev.button == 1:
if not hasattr( self, "press_x" ) or \
not w.drag_check_threshold( int( self.press_x ),
int( self.press_y ),
int( ev.x ),
int( ev.y ) ):
int( self.press_y ),
int( ev.x ),
int( ev.y ) ):
if self.Win.pinmenu == False:
self.Win.wTree.get_widget( "window1" ).hide()
if "applications" in self.Win.plugins:

View File

@ -70,4 +70,3 @@ class PointerMonitor(GObject.GObject, threading.Thread):
self.running = False
self.root.ungrab_button(X.AnyButton, X.AnyModifier)
self.display.close()