Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Comment: | I am King of Fail
I mean, just how? I think I need a few years more sleep or something |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
506ba488339a7a99d5d702a25ad21892 |
User & Date: | base@atomicules.co.uk 2013-09-02 09:47:34 |
2013-09-02
| ||
10:20 |
Implement exposure equations and matching for Aperture menu
Also: More evidence I am in a continual half-daze - Need to define shutter value as double in `aperture` as otherwise both | |
09:47 |
I am King of Fail
I mean, just how? I think I need a few years more sleep or something check-in: 506ba48833 user: base@atomicules.co.uk tags: origin/master, trunk | |
09:29 |
Actually make it work this time.
See this commit: 8d3e66b5ecffa8bcf7691c3f0600840b934beb1a I'm such an idiot. - Remove `set_top_row` when setting the shutter menu to the correct | |
Changes to exposurses.c.
︙ | ︙ | |||
246 247 248 249 250 251 252 | /* Test finding nearest matching value in array? */ char aperture_sel_[4] = ""; strncpy(aperture_sel_, aperture_sel+2, 3); /* There is probably a nicer way to format the below */ set_menu_pattern( shutter_menu, shutter_array[nearest_match( | | | 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 | /* Test finding nearest matching value in array? */ char aperture_sel_[4] = ""; strncpy(aperture_sel_, aperture_sel+2, 3); /* There is probably a nicer way to format the below */ set_menu_pattern( shutter_menu, shutter_array[nearest_match( shutter(exposure(atoi(iso_sel)), strtod(aperture_sel_, NULL)), 2 )] ); menu_driver(shutter_menu, REQ_DOWN_ITEM); menu_driver(shutter_menu, REQ_UP_ITEM); wrefresh(shutter_win); } |
︙ | ︙ |