diff options
author | rathnor <rathnor> | 2003-05-26 11:27:31 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-05-26 11:27:31 (GMT) |
commit | fc760d0b688ebd2d62cc7bd05df7f4a87ab15677 (patch) | |
tree | 0c07e87c787e7bb3dede0ab44ff42d43273c1bd3 | |
parent | b8802ad22a0b720143c0381cdac1beb10a7b5193 (diff) | |
download | fluxbox-fc760d0b688ebd2d62cc7bd05df7f4a87ab15677.zip fluxbox-fc760d0b688ebd2d62cc7bd05df7f4a87ab15677.tar.bz2 |
add border option for write as well as read
-rw-r--r-- | src/Remember.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Remember.cc b/src/Remember.cc index 16a2ee3..f2499df 100644 --- a/src/Remember.cc +++ b/src/Remember.cc | |||
@@ -21,7 +21,7 @@ | |||
21 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 21 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
22 | // DEALINGS IN THE SOFTWARE. | 22 | // DEALINGS IN THE SOFTWARE. |
23 | 23 | ||
24 | // $Id: Remember.cc,v 1.17 2003/05/26 04:24:24 rathnor Exp $ | 24 | // $Id: Remember.cc,v 1.18 2003/05/26 11:27:31 rathnor Exp $ |
25 | 25 | ||
26 | #include "Remember.hh" | 26 | #include "Remember.hh" |
27 | #include "StringUtil.hh" | 27 | #include "StringUtil.hh" |
@@ -396,6 +396,10 @@ void Remember::save() { | |||
396 | | FluxboxWindow::DECORM_MENU): | 396 | | FluxboxWindow::DECORM_MENU): |
397 | apps_file << " [Deco]\t{TINY}" << endl; | 397 | apps_file << " [Deco]\t{TINY}" << endl; |
398 | break; | 398 | break; |
399 | case (FluxboxWindow::DECORM_BORDER | ||
400 | | FluxboxWindow::DECORM_MENU): | ||
401 | apps_file << " [Deco]\t{BORDER}" << endl; | ||
402 | break; | ||
399 | default: | 403 | default: |
400 | apps_file << " [Deco]\t{0x"<<hex<<a->decostate<<dec<<"}"<<endl; | 404 | apps_file << " [Deco]\t{0x"<<hex<<a->decostate<<dec<<"}"<<endl; |
401 | break; | 405 | break; |