This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # It looks like -multiwindow mode triggers the static color visual in both the internal x2go xserver and the external vcxsrv | |
| # But it also looks like -multiwindow mode is how x2go client allows resizing of the remote desktop | |
| # ...so I'm looking for a way to allow resizing of remote desktop w/out triggering static color visual. | |
| # | |
| # ...output of vcxsrv.exe's usage note: | |
| Usage... | |
| Vcxsrv [:<display>] [option] | |
| :display-number |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package uk.co.datumedge.blog.hamcrest; | |
| import static org.hamcrest.MatcherAssert.assertThat; | |
| import static org.hamcrest.Matchers.both; | |
| import static org.hamcrest.Matchers.equalTo; | |
| import static org.hamcrest.Matchers.greaterThanOrEqualTo; | |
| import static org.hamcrest.Matchers.lessThan; | |
| import javax.ws.rs.core.Response; |
NewerOlder