aliens

Author Topic: Faster Queueing  (Read 2025 times)

Offline Gliks

  • Sergeant
  • **
  • Posts: 12
    • View Profile
Faster Queueing
« on: March 20, 2020, 02:22:54 pm »
dunno how to describe it. can we get a "hold shift and click to assign 10 at a time" situation for the interface?

Offline WaldoTheRanger

  • Colonel
  • ****
  • Posts: 112
    • View Profile
Re: Faster Queueing
« Reply #1 on: March 20, 2020, 10:35:59 pm »
You mean selecting a whole group of soldiers for deployment at once like you would with files on the desktop?
sounds like it'd be a bit more trouble than it's worth, but i'd welcome it if it could be done.

Offline Bobit

  • Colonel
  • ****
  • Posts: 186
    • View Profile
Re: Faster Queueing
« Reply #2 on: March 21, 2020, 03:28:02 am »
If you mean for scientists/engineers, just right-click.

Offline The Reaver of Darkness

  • Commander
  • *****
  • Posts: 1510
    • View Profile
Re: Faster Queueing
« Reply #3 on: March 21, 2020, 05:18:03 am »
You can also set a number to increment for the scroll wheel. I like to set it to 10. That way every scroll wheel increment increments the list by 10.

Offline kevL

  • Colonel
  • ****
  • Posts: 466
  • pitchforks and torches
    • View Profile
Re: Faster Queueing
« Reply #4 on: March 21, 2020, 06:30:10 am »
Code: [Select]
/**
 * Adjusts the quantity by which to increase/decrease a TextList value.
 * @return, delta
 */
int State::stepDelta() // protected/static.
{
    if ((SDL_GetModState() & KMOD_CTRL) == 0)
        return 1;

    return 10;
}

Offline Gliks

  • Sergeant
  • **
  • Posts: 12
    • View Profile
Re: Faster Queueing
« Reply #5 on: March 22, 2020, 03:19:53 am »
thank you, that's exactly what i need