Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Identation changes only
Was meant to be like this in the first place |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b5ca8452684c61194b4a3485fc1df7fe |
User & Date: | atomicules@lavabit.com 2013-07-10 13:13:55 |
Context
2013-07-10
| ||
13:14 |
Add initial usage of the User Pointer
Still need a way to get to the third menu and also need to actually do Baby steps though. check-in: b4468458f4 user: atomicules@lavabit.com tags: origin/master, trunk | |
13:13 |
Identation changes only
Was meant to be like this in the first place check-in: b5ca845268 user: atomicules@lavabit.com tags: origin/master, trunk | |
13:12 |
Remove unnecessary items from arrays
At least I don't think these are needed? check-in: e4e256f8b0 user: atomicules@lavabit.com tags: origin/master, trunk | |
Changes
Changes to exposurses.c.
︙ | ︙ | |||
150 151 152 153 154 155 156 | win = &iso_win; break; case KEY_RIGHT: menu = &shutter_menu; win = &shutter_win; break; case KEY_DOWN: | | | | | | 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | win = &iso_win; break; case KEY_RIGHT: menu = &shutter_menu; win = &shutter_win; break; case KEY_DOWN: menu_driver(*menu, REQ_DOWN_ITEM); break; case KEY_UP: menu_driver(*menu, REQ_UP_ITEM); break; case KEY_NPAGE: menu_driver(*menu, REQ_SCR_DPAGE); break; case KEY_PPAGE: menu_driver(*menu, REQ_SCR_UPAGE); break; } wrefresh(*win); } /* Unpost and free all the memory taken up */ unpost_menu(iso_menu); unpost_menu(shutter_menu); |
︙ | ︙ |