We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5130428 commit 248df89Copy full SHA for 248df89
src/Resizer.vala
@@ -99,7 +99,7 @@ namespace Resizer {
99
// turns "/home/user/Pictures/picture.jpg" into somesthing like:
100
// "/home/user/Pictures/picture-2000.jpg" or
101
// "/home/user/Pictures/picture-2000x1500.jpg" ors
102
- var file_regex = new GLib.Regex ("""(\/[^./]+)(\.\w+)$""");
+ var file_regex = new GLib.Regex ("""(\/[^/]+)(\.\w+)$""");
103
var max_size = "";
104
if (width == height) {
105
max_size = width.to_string ();
0 commit comments