aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormarkt <markt>2007-08-11 23:42:40 (GMT)
committermarkt <markt>2007-08-11 23:42:40 (GMT)
commit65d8bdf0ce7a27c822a8ca6c7f287dc39e29b0b7 (patch)
treebc95748edcd98435f49fe964100f01bf6d6e9d83 /src
parentebf5226d2dd471cebad490087a5cf352842aa0e9 (diff)
downloadfluxbox-65d8bdf0ce7a27c822a8ca6c7f287dc39e29b0b7.zip
fluxbox-65d8bdf0ce7a27c822a8ca6c7f287dc39e29b0b7.tar.bz2
migrate patches from trunk
Diffstat (limited to 'src')
-rw-r--r--src/Window.cc4
-rw-r--r--src/main.cc2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc
index b0aa678..b9ef2ff 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -2400,8 +2400,10 @@ void FluxboxWindow::propertyNotifyEvent(WinClient &client, Atom atom) {
2400 functions.resize = true; 2400 functions.resize = true;
2401 } 2401 }
2402 2402
2403 if (changed) 2403 if (changed) {
2404 setupWindow(); 2404 setupWindow();
2405 applyDecorations();
2406 }
2405 } 2407 }
2406 2408
2407 moveResize(frame().x(), frame().y(), 2409 moveResize(frame().x(), frame().y(),
diff --git a/src/main.cc b/src/main.cc
index 4554123..e4e16ac 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -222,7 +222,7 @@ int main(int argc, char **argv) {
222 } 222 }
223 } else if (arg == "-version" || arg == "-v") { 223 } else if (arg == "-version" || arg == "-v") {
224 // print current version string 224 // print current version string
225 cout << "Fluxbox " << __fluxbox_version << " : (c) 2001-2007 Henrik Kinnunen " << endl << endl; 225 cout << "Fluxbox " << __fluxbox_version << " : (c) 2001-2007 Fluxbox Team " << endl << endl;
226 exit(EXIT_SUCCESS); 226 exit(EXIT_SUCCESS);
227 } else if (arg == "-log") { 227 } else if (arg == "-log") {
228 if (++i >= argc) { 228 if (++i >= argc) {