Changeset 4625e17d48032f564fb46119f434fa209f5b623d
- Timestamp:
- 01/04/09 19:39:51 (4 years ago)
- Author:
- Armin Burgmeier <armin@…>
- Parents:
- 71a26fa54bb1c7b579d749f91b6d6a429b0a9af2
- Children:
- a9b75ca3a13948c179138e53520bf0e2a5a092f9
- git-committer:
- Armin Burgmeier <armin@arbur.net> / 2009-01-04T19:39:51Z+0100
- Message:
-
Re-enable Ctrl+Alt+PgUp/Down? to cycle between tabs
2009-01-04 Armin Burgmeier <armin@…>
- code/core/folder.cpp: Re-enable Ctrl+Alt+PgDown/Ctrl?+Alt+PgUp? to
cycle between tabs.
- code/core/docwindow.cpp: Added a TODO comment about using a single
UserList? widget for all documents.
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r71a26fa
|
r4625e17
|
|
| | 1 | 2009-01-04 Armin Burgmeier <armin@arbur.net> |
| | 2 | |
| | 3 | * code/core/folder.cpp: Re-enable Ctrl+Alt+PgDown/Ctrl+Alt+PgUp to |
| | 4 | cycle between tabs. |
| | 5 | |
| | 6 | * code/core/docwindow.cpp: Added a TODO comment about using a single |
| | 7 | UserList widget for all documents. |
| | 8 | |
| 1 | 9 | 2009-01-04 Armin Burgmeier <armin@arbur.net> |
| 2 | 10 | |
-
|
r4d4ee96
|
r4625e17
|
|
| 32 | 32 | |
| 33 | 33 | #include <gtksourceview/gtksourcebuffer.h> |
| | 34 | |
| | 35 | // TODO: Consider using a single user list for all DocWindows, reparenting |
| | 36 | // into the current DocWindow's frame. Keep dummy widgets in other docwindows, |
| | 37 | // so text does not resize. |
| 34 | 38 | |
| 35 | 39 | namespace |
-
|
r4d4ee96
|
r4625e17
|
|
| 220 | 220 | } |
| 221 | 221 | |
| 222 | | #if 0 |
| 223 | | // Is already used by GtkTextView... |
| 224 | 222 | if( (event->state & (GDK_CONTROL_MASK | GDK_MOD1_MASK)) == |
| 225 | 223 | (GDK_CONTROL_MASK | GDK_MOD1_MASK)) |
| … |
… |
|
| 236 | 234 | } |
| 237 | 235 | } |
| 238 | | #endif |
| 239 | 236 | |
| 240 | 237 | return false; |