Skip to content

Commit

Permalink
Fix version check
Browse files Browse the repository at this point in the history
  • Loading branch information
gnunn1 committed Apr 29, 2016
1 parent 91d9212 commit be97fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/gx/gtk/vte.d
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import vte.Version;
* Check if the VTE version is the same or higher then requested
*/
bool checkVTEVersionNumber(uint major, uint minor) {
return (major > vteMajorVersion || (major == vteMajorVersion && minor >= vteMinorVersion));
return (major > vteMajorVersion || (major == vteMajorVersion && minor <= vteMinorVersion));
}

private:
Expand Down

0 comments on commit be97fb3

Please sign in to comment.