diff options
| -rw-r--r-- | .version | 2 | ||||
| -rw-r--r-- | debian/changelog | 6 | ||||
| -rw-r--r-- | debian/files | 2 | ||||
| -rw-r--r-- | docs/loadbars.1 | 2 | ||||
| -rw-r--r-- | lib/Loadbars/Main.pm | 3 |
5 files changed, 11 insertions, 4 deletions
@@ -1 +1 @@ -0.7.0 +0.7.1 diff --git a/debian/changelog b/debian/changelog index 5963ebd..f2dbc47 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +loadbars (0.7.1) stable; urgency=low + + * It's now possible to resize the window via mouse + + -- Paul Buetow <paul@buetow.org> Wed, 10 Jul 2013 23:53:24 +0200 + loadbars (0.7.0) stable; urgency=low * Initial version for Debian GNU/Linux Wheezy diff --git a/debian/files b/debian/files index 25fb84c..3c343dc 100644 --- a/debian/files +++ b/debian/files @@ -1 +1 @@ -loadbars_0.7.0_all.deb utils optional +loadbars_0.7.1_all.deb utils optional diff --git a/docs/loadbars.1 b/docs/loadbars.1 index 1ba71cb..4ac66ff 100644 --- a/docs/loadbars.1 +++ b/docs/loadbars.1 @@ -124,7 +124,7 @@ .\" ======================================================================== .\" .IX Title "LOADBARS 1" -.TH LOADBARS 1 "2013-06-19" "loadbars 0.7.0" "User Commands" +.TH LOADBARS 1 "2013-06-27" "loadbars 0.7.1" "User Commands" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/lib/Loadbars/Main.pm b/lib/Loadbars/Main.pm index 2f8e200..f53bad8 100644 --- a/lib/Loadbars/Main.pm +++ b/lib/Loadbars/Main.pm @@ -466,8 +466,9 @@ sub loop ($@) { # While there are events to poll, poll them all! while ( SDL::Events::poll_event($event) ) { + # Videoresize - if ($event->type() == 16) { + if ( $event->type() == 16 ) { $newsize{width} = $event->resize_w; $newsize{height} = $event->resize_h; $resize_window = 1; |
