Done decrements the group's reference counter by one.
()
| 185 | |
| 186 | // Done decrements the group's reference counter by one. |
| 187 | func (g *WindowGroup) Done() { |
| 188 | g.Add(-1) |
| 189 | } |
| 190 | |
| 191 | // Synchronize adds f to the group's function queue, to be executed |
| 192 | // by the message loop running on the the group's thread. |
no test coverage detected