diff options
Diffstat (limited to 'src/Slit.cc')
-rw-r--r-- | src/Slit.cc | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/Slit.cc b/src/Slit.cc index 69d4824..da2b860 100644 --- a/src/Slit.cc +++ b/src/Slit.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Slit.cc,v 1.72 2003/07/18 15:40:55 rathnor Exp $ | 25 | // $Id: Slit.cc,v 1.73 2003/07/19 11:55:49 rathnor Exp $ |
26 | 26 | ||
27 | #include "Slit.hh" | 27 | #include "Slit.hh" |
28 | 28 | ||
@@ -1263,7 +1263,7 @@ void Slit::setupMenu() { | |||
1263 | screen(), | 1263 | screen(), |
1264 | screen().imageControl(), | 1264 | screen().imageControl(), |
1265 | *screen().layerManager().getLayer(Fluxbox::instance()->getMenuLayer()), | 1265 | *screen().layerManager().getLayer(Fluxbox::instance()->getMenuLayer()), |
1266 | this | 1266 | *this |
1267 | )); | 1267 | )); |
1268 | } | 1268 | } |
1269 | 1269 | ||
@@ -1344,3 +1344,10 @@ void Slit::moveToLayer(int layernum) { | |||
1344 | m_layeritem->moveToLayer(layernum); | 1344 | m_layeritem->moveToLayer(layernum); |
1345 | *m_rc_layernum = layernum; | 1345 | *m_rc_layernum = layernum; |
1346 | } | 1346 | } |
1347 | |||
1348 | void Slit::saveOnHead(int head) { | ||
1349 | m_rc_on_head = head; | ||
1350 | // reposition | ||
1351 | reconfigure(); | ||
1352 | } | ||
1353 | |||