diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-08-01 13:38:12 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-08-01 13:38:12 +0200 |
commit | 3ec9e80de48225c7f27c19cdc0546762c042d0d1 (patch) | |
tree | d7f3cbba4de7ce2427c5da05c51a58bc8c8ce6c2 /src/core | |
parent | d84071a80454b1edbe6497eda5e23365bd0158a4 (diff) | |
download | poezio-3ec9e80de48225c7f27c19cdc0546762c042d0d1.tar.gz poezio-3ec9e80de48225c7f27c19cdc0546762c042d0d1.tar.bz2 poezio-3ec9e80de48225c7f27c19cdc0546762c042d0d1.tar.xz poezio-3ec9e80de48225c7f27c19cdc0546762c042d0d1.zip |
Little comments fix
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/core.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/core.py b/src/core/core.py index 75a3d7f5..6821df92 100644 --- a/src/core/core.py +++ b/src/core/core.py @@ -1599,9 +1599,9 @@ class Core(object): Called when we want to resize the screen """ # If we have the tabs list on the left, we just give a truncated - # window to each Tab class, so the draw themself in the portion - # of the screen that the can occupy, and we draw the tab list - # on the left remaining space + # window to each Tab class, so they draw themself in the portion of + # the screen that they can occupy, and we draw the tab list on the + # remaining space, on the left with g_lock: height, width = self.stdscr.getmaxyx() if (config.get('enable_vertical_tab_list', False) and |