diff options
author | rathnor <rathnor> | 2003-10-31 20:02:49 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-10-31 20:02:49 (GMT) |
commit | 08089dd064d626cb6d9f65dd201f6f9be5d5751b (patch) | |
tree | 474054c9c2229f1adaa6990682d38d2b8ea02395 /src/IconButton.cc | |
parent | af7deab37956a180996f4420144c484fa7cdb5ed (diff) | |
download | fluxbox_pavel-08089dd064d626cb6d9f65dd201f6f9be5d5751b.zip fluxbox_pavel-08089dd064d626cb6d9f65dd201f6f9be5d5751b.tar.bz2 |
out-by-one correction
Diffstat (limited to 'src/IconButton.cc')
-rw-r--r-- | src/IconButton.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/IconButton.cc b/src/IconButton.cc index 093298e..bc0c9d5 100644 --- a/src/IconButton.cc +++ b/src/IconButton.cc | |||
@@ -20,7 +20,7 @@ | |||
20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
21 | // DEALINGS IN THE SOFTWARE. | 21 | // DEALINGS IN THE SOFTWARE. |
22 | 22 | ||
23 | // $Id: IconButton.cc,v 1.10 2003/10/31 19:32:39 rathnor Exp $ | 23 | // $Id: IconButton.cc,v 1.11 2003/10/31 20:02:49 rathnor Exp $ |
24 | 24 | ||
25 | #include "IconButton.hh" | 25 | #include "IconButton.hh" |
26 | 26 | ||
@@ -197,7 +197,7 @@ void IconButton::setupWindow() { | |||
197 | 197 | ||
198 | void IconButton::drawText(int x, int y) { | 198 | void IconButton::drawText(int x, int y) { |
199 | // offset text | 199 | // offset text |
200 | FbTk::TextButton::drawText(m_icon_window.x() + m_icon_window.width() + 1, y); | 200 | FbTk::TextButton::drawText(m_icon_window.x() + m_icon_window.width() + 1, y); |
201 | } | 201 | } |
202 | 202 | ||
203 | 203 | ||