all repos — fluxbox @ 0a5cb42d4d2fc2c80e07002084dfa95286e4dff5

custom fork of the fluxbox windowmanager

temp disabled xinerama menu item
fluxgen fluxgen
commit

0a5cb42d4d2fc2c80e07002084dfa95286e4dff5

parent

4117b5d1303c2dbd0f609e9152beb6dd91942ccb

1 files changed, 3 insertions(+), 3 deletions(-)

jump to
M src/Xinerama.hhsrc/Xinerama.hh

@@ -20,7 +20,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: Xinerama.hh,v 1.1 2003/05/19 14:26:30 rathnor Exp $ +// $Id: Xinerama.hh,v 1.2 2003/06/25 06:11:39 fluxgen Exp $ #ifndef XINERAMA_HH #define XINERAMA_HH

@@ -48,9 +48,9 @@ FbTk::MenuItem(label,cmd), m_object(object), m_headnum(headnum) {}

XineramaHeadMenuItem(const char *label, ItemType *object, int headnum): FbTk::MenuItem(label), m_object(object), m_headnum(headnum) {} - bool isEnabled() const { return m_object->screen().getOnHead(*m_object) != m_headnum; } ; + bool isEnabled() const { return true; } //m_object->screen().getOnHead(*m_object) != m_headnum; } ; void click(int button, int time) { - m_object->screen().setOnHead(*m_object, m_headnum); + // m_object->screen().setOnHead(*m_object, m_headnum); FbTk::MenuItem::click(button, time); }