all repos — fluxbox @ cf8811f3a930198e85d4bb6b76ff604c95a56535

custom fork of the fluxbox windowmanager

added updateGeometry to force an update
fluxgen fluxgen
commit

cf8811f3a930198e85d4bb6b76ff604c95a56535

parent

fd9a18daa4f1f4a673c6bf92ad318c9d835f01f1

2 files changed, 7 insertions(+), 3 deletions(-)

jump to
M src/FbRootWindow.ccsrc/FbRootWindow.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: FbRootWindow.cc,v 1.1 2003/05/10 22:50:19 fluxgen Exp $ +// $Id: FbRootWindow.cc,v 1.2 2003/05/12 04:29:50 fluxgen Exp $ #include "FbRootWindow.hh" #include "App.hh"

@@ -61,3 +61,7 @@ m_visual = DefaultVisual(disp, screen_num);

m_colormap = DefaultColormap(disp, screen_num); } } + +void FbRootWindow::updateGeometry() { + FbWindow::updateGeometry(); +}
M src/FbRootWindow.hhsrc/FbRootWindow.hh

@@ -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: FbRootWindow.hh,v 1.1 2003/05/10 22:50:19 fluxgen Exp $ +// $Id: FbRootWindow.hh,v 1.2 2003/05/12 04:29:23 fluxgen Exp $ #ifndef FBROOTWINDOW_HH #define FBROOTWINDOW_HH

@@ -37,7 +37,7 @@ void show() { }

void hide() { } // we should not assign a new window to this FbTk::FbWindow &operator = (Window win) { return *this; } - + void updateGeometry(); inline Visual *visual() const { return m_visual; } inline Colormap colormap() const { return m_colormap; }