all repos — fluxbox @ a50b4b029a791048bf3c5d75408f6d4c77638655

custom fork of the fluxbox windowmanager

minor ident and removal of debug msg
fluxgen fluxgen
commit

a50b4b029a791048bf3c5d75408f6d4c77638655

parent

3eb4d3637fbe4059acdc323660a6ce401c7ebe80

1 files changed, 5 insertions(+), 6 deletions(-)

jump to
M src/FbWinFrame.ccsrc/FbWinFrame.cc

@@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: FbWinFrame.cc,v 1.2 2003/01/07 01:30:57 fluxgen Exp $ +// $Id: FbWinFrame.cc,v 1.3 2003/01/09 18:03:33 fluxgen Exp $ #include "FbWinFrame.hh" #include "ImageControl.hh"

@@ -337,10 +337,8 @@

if (event.button > 5 || event.button < 1) return; - if (*m_commands[event.button - 1].click_pressed) { - cerr<<"Pressed event button = "<<event.button<<endl; + if (*m_commands[event.button - 1].click_pressed) m_commands[event.button - 1].click_pressed->execute(); - } } void FbWinFrame::buttonReleaseEvent(XButtonEvent &event) {

@@ -381,7 +379,7 @@ }

void FbWinFrame::reconfigure() { m_window.clear(); - + // align titlebar and render it if (m_use_titlebar) reconfigureTitlebar();

@@ -660,8 +658,9 @@

m_shaded = false; m_label.show(); - showHandle(); + showHandle(); showTitlebar(); + // note: we don't show clientarea yet setEventHandler(*this);