aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-12-10 22:28:07 (GMT)
committerfluxgen <fluxgen>2003-12-10 22:28:07 (GMT)
commitcb8e8e8d054b044db602326278055dc10f1c0c57 (patch)
treee8bb756a6909acb69589cce7db2ad144314c10cd /src/Screen.cc
parent7fab9c0a0b97721f893a8c12e7cb4df40f1aa4ef (diff)
downloadfluxbox-cb8e8e8d054b044db602326278055dc10f1c0c57.zip
fluxbox-cb8e8e8d054b044db602326278055dc10f1c0c57.tar.bz2
fixed geometry bug
Diffstat (limited to 'src/Screen.cc')
-rw-r--r--src/Screen.cc8
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
2018void BScreen::showPosition(int x, int y) { 2018void 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
2054void BScreen::showGeometry(unsigned int gx, unsigned int gy) { 2057void 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();