zodiac757
I've got it!
The auto-zebra bug:
AF mode: when I press shutter button halfway + MF (to lock AF as MF - (I often use this function): zebra turns on (or off)
here is the reason:
"Common to all cameras
Half Shutter + Left - Toggle Zebra on/off
Half Shutter + Up - Toggle Histogram on/off
Half Shutter + Right - Toggle OSD on/off "
the source:
http://chdk.wikia.com/wiki/CHDK/End-Users-Guide-AllBest50
CAN SOMEBODY DISABLE IT??
I dislike zebra because it kills the grid lines.
Sorry for late answer. I was on vacation.
I have checked the code and I think that we can change the shortcut for zebra toggling safely. Shortcuts are defined in core/gui.c. Now SX110 uses the same shortcuts as
SX10 does. But this is obviously wrong as you had to experience. BTW, hats off for your patience in investigation of this.
I suggest to change shortcuts for SX110 to SX100-style. Following code sniplet shows the current configuration:
#elif defined(CAMERA_g7) || defined(CAMERA_sx10) || defined(CAMERA_sx1) ||defined(CAMERA_sx110is)
//Alt mode
#define SHORTCUT_TOGGLE_RAW KEY_ERASE
//Half press shoot button
#define SHORTCUT_TOGGLE_HISTO KEY_DOWN
#define SHORTCUT_TOGGLE_ZEBRA KEY_LEFT
#define SHORTCUT_TOGGLE_OSD KEY_RIGHT
#define SHORTCUT_DISABLE_OVERRIDES KEY_UP
//Alt mode & Manual mode
#define SHORTCUT_SET_INFINITY KEY_UP
#define SHORTCUT_SET_HYPERFOCAL KEY_DOWN
#elif defined(CAMERA_sx100is)
//Alt mode
#define SHORTCUT_TOGGLE_RAW KEY_ERASE
//Half press shoot button
#define SHORTCUT_TOGGLE_HISTO KEY_UP
#define SHORTCUT_TOGGLE_ZEBRA KEY_DOWN
#define SHORTCUT_TOGGLE_OSD KEY_RIGHT
#define SHORTCUT_DISABLE_OVERRIDES KEY_LEFT
//Alt mode & Manual mode
#define SHORTCUT_SET_INFINITY KEY_UP
#define SHORTCUT_SET_HYPERFOCAL KEY_DOWN
Changing the shortcuts to SX100-style is simply made by changing the #elif-statements (but I have still to check the SHORTCUT_DISABLE_OVERRIDES shortcut...).
The change will be permanent.
But: I will do this at some point later. I'm waiting for the new colormatrix. VIT40 told me some days ago that he is working on it. Than I will publish the final release.
@obihoernchen: could you record the shortcuts in wikia, please?