diff options
author | fluxgen <fluxgen> | 2003-02-23 01:06:23 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-02-23 01:06:23 (GMT) |
commit | 0ff94f1c8f53d661f83aad343b9010b8a95de8d4 (patch) | |
tree | b459bfb2777de4813046fa1e710e8295f87941b2 /src/WinButton.cc | |
parent | 3b594d1ba63715e87c1a12b3b7b2d4ab56357aaf (diff) | |
download | fluxbox-0ff94f1c8f53d661f83aad343b9010b8a95de8d4.zip fluxbox-0ff94f1c8f53d661f83aad343b9010b8a95de8d4.tar.bz2 |
using not sticky state as default
Diffstat (limited to 'src/WinButton.cc')
-rw-r--r-- | src/WinButton.cc | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/WinButton.cc b/src/WinButton.cc index 01a096d..e9f49b0 100644 --- a/src/WinButton.cc +++ b/src/WinButton.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | /// $Id: WinButton.cc,v 1.1 2003/01/05 22:48:54 fluxgen Exp $ | 22 | /// $Id: WinButton.cc,v 1.2 2003/02/23 01:06:23 fluxgen Exp $ |
23 | 23 | ||
24 | #include "WinButton.hh" | 24 | #include "WinButton.hh" |
25 | #include "App.hh" | 25 | #include "App.hh" |
@@ -57,18 +57,18 @@ void WinButton::drawType() { | |||
57 | 2, height() - 5, width() - 5, 2); | 57 | 2, height() - 5, width() - 5, 2); |
58 | break; | 58 | break; |
59 | case STICK: | 59 | case STICK: |
60 | // if (m_stuck) { | 60 | /* if (m_stuck) { |
61 | XFillRectangle(disp, window().window(), | ||
62 | gc(), | ||
63 | width()/2 - width()/4, height()/2 - height()/4, | ||
64 | width()/2, height()/2); | ||
65 | } else { */ | ||
61 | XFillRectangle(disp, window().window(), | 66 | XFillRectangle(disp, window().window(), |
62 | gc(), | 67 | gc(), |
63 | width()/2 - width()/4, height()/2 - height()/4, | 68 | width()/2, height()/2, |
64 | width()/2, height()/2); | 69 | width()/5, height()/5); |
65 | /* } else { | 70 | // } |
66 | XFillRectangle(disp, window().window(), | 71 | |
67 | gc(), | ||
68 | width()/2, height()/2, | ||
69 | width()/5, height()/5); | ||
70 | } | ||
71 | */ | ||
72 | break; | 72 | break; |
73 | case CLOSE: | 73 | case CLOSE: |
74 | XDrawLine(disp, window().window(), | 74 | XDrawLine(disp, window().window(), |