Confirmation Dialog colors

Former Member
Former Member
Using the standard Confirmation Dialog my 920 is coming up with the colors the opposite from the menus. So the Yes option is highlighted white on entry, which is misleading because it is the No option that is selected. Is there any way of switching the colors?
  • I don't have access to a development environment to test, but I've previously filed an issue with the progress bar using the last color set. I'm wondering if you're seeing a related issue with the confirmation. The workaround I've been using is to always set colors at the end of my onUpdate() functions.

    function onUpdate(dc) {

    // normal drawing, like calling `View.onUpdate(dc)', would go here

    // set colors for progress bar
    dc.setColor(Gfx.COLOR_WHITE, Gfx.COLOR_RED);
    }


    Does this fix your problem?

    Travis
  • Former Member
    Former Member over 9 years ago
    Hey there Travis :)

    I had already delved into the forum and seen that possible option. I tried setting the colors from the last view before the menu and confirmation. Sadly it didn't seem to make a difference.