diff options
Diffstat (limited to 'src/Screen.cc')
-rw-r--r-- | src/Screen.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Screen.cc b/src/Screen.cc index 7ac60d6..25d91ed 100644 --- a/src/Screen.cc +++ b/src/Screen.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Screen.cc,v 1.245 2003/12/07 16:39:43 fluxgen Exp $ | 25 | // $Id: Screen.cc,v 1.246 2003/12/10 22:28:07 fluxgen Exp $ |
26 | 26 | ||
27 | 27 | ||
28 | #include "Screen.hh" | 28 | #include "Screen.hh" |
@@ -2016,6 +2016,9 @@ void BScreen::shutdown() { | |||
2016 | 2016 | ||
2017 | 2017 | ||
2018 | void BScreen::showPosition(int x, int y) { | 2018 | void BScreen::showPosition(int x, int y) { |
2019 | if (!doShowWindowPos()) | ||
2020 | return; | ||
2021 | |||
2019 | if (! geom_visible) { | 2022 | if (! geom_visible) { |
2020 | if (hasXinerama()) { | 2023 | if (hasXinerama()) { |
2021 | unsigned int head = getCurrHead(); | 2024 | unsigned int head = getCurrHead(); |
@@ -2052,6 +2055,9 @@ void BScreen::showPosition(int x, int y) { | |||
2052 | 2055 | ||
2053 | 2056 | ||
2054 | void BScreen::showGeometry(unsigned int gx, unsigned int gy) { | 2057 | void BScreen::showGeometry(unsigned int gx, unsigned int gy) { |
2058 | if (!doShowWindowPos()) | ||
2059 | return; | ||
2060 | |||
2055 | if (! geom_visible) { | 2061 | if (! geom_visible) { |
2056 | if (hasXinerama()) { | 2062 | if (hasXinerama()) { |
2057 | unsigned int head = getCurrHead(); | 2063 | unsigned int head = getCurrHead(); |