By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1032
Collapse All | Expand All

(-)kmplayer-trinity-3.5.13/src/kmplayerapp.cpp.orig (-14 lines)
Lines 1173-1179 Link Here
1173
    unsigned long props = NET::WMWindowType;
1173
    unsigned long props = NET::WMWindowType;
1174
    NETWinInfo winfo (qt_xdisplay (), winId (), qt_xrootwin (), props);
1174
    NETWinInfo winfo (qt_xdisplay (), winId (), qt_xrootwin (), props);
1175
    if (m_minimal_mode) {
1175
    if (m_minimal_mode) {
1176
        winfo.setWindowType (NET::Normal);
1177
        readOptions ();
1176
        readOptions ();
1178
        if (by_user)
1177
        if (by_user)
1179
            disconnect (m_view->controlPanel ()->button (KMPlayer::ControlPanel::button_playlist), TQT_SIGNAL (clicked ()), TQT_TQOBJECT(this), TQT_SLOT (slotMinimalMode ()));
1178
            disconnect (m_view->controlPanel ()->button (KMPlayer::ControlPanel::button_playlist), TQT_SIGNAL (clicked ()), TQT_TQOBJECT(this), TQT_SLOT (slotMinimalMode ()));
Lines 1185-1205 Link Here
1185
        statusBar()->hide();
1184
        statusBar()->hide();
1186
        if (by_user)
1185
        if (by_user)
1187
            connect (m_view->controlPanel ()->button (KMPlayer::ControlPanel::button_playlist), TQT_SIGNAL (clicked ()), TQT_TQOBJECT(this), TQT_SLOT (slotMinimalMode ()));
1186
            connect (m_view->controlPanel ()->button (KMPlayer::ControlPanel::button_playlist), TQT_SIGNAL (clicked ()), TQT_TQOBJECT(this), TQT_SLOT (slotMinimalMode ()));
1188
        if (by_user)
1189
#if KDE_IS_VERSION(3, 1, 90)
1190
            winfo.setWindowType (NET::Utility);
1191
#else
1192
            winfo.setWindowType (NET::Menu);
1193
#endif
1194
    }
1187
    }
1195
    m_view->viewArea ()->minimalMode ();
1188
    m_view->viewArea ()->minimalMode ();
1196
    if (by_user) {
1197
        TQRect rect = m_view->viewArea ()->topWindowRect ();
1198
        hide ();
1199
        TQTimer::singleShot (0, TQT_TQOBJECT(this), TQT_SLOT (zoom100 ()));
1200
        show ();
1201
        move (rect.x (), rect.y ());
1202
    }
1203
    m_minimal_mode = !m_minimal_mode;
1189
    m_minimal_mode = !m_minimal_mode;
1204
}
1190
}
1205
1191

Return to bug 1032