It probably aren't two separate processes, but two separate threads. A thread is somewhat like a sub-process.
There are applications that use more that one process, like Windows Explorer and Google Chrome. Each window or tab has as separate process. There is one process displaying it, but separate processes managing their content. This is mainly done because of possible instabilities. When a process crashes, the entire application is closed, including all its threads. By putting the logic in separate processes, the application stays alive when one of the windows crashes. It's a little harder to program a multi-threaded application, but a lot little harder to develop a multi-process single window application like this.