Setting Slider Range Option Misbehaving

Setting Slider Range Option Misbehaving

I am developing a search form and am using jQUI sliders for many of the criteria.  I wish to allow the user to select if they want to search for properties with "more", "less", or "exactly" the number of beds/baths they have selected using a buttonset.  The buttonset's change behavior is described below:
  1. // Bathroom more/less/exactly behavior
  2. $('input[name="compare_baths"]').change(function () {
  3.     switch ($(this).val()) {
  4.         case '+':
  5.             $('#slider_baths').slider('option', 'range', 'min');
  6.             break;
  7.         case '-':
  8.             $('#slider_baths').slider('option', 'range', 'max');
  9.             break;
  10.         case '=':
  11.             $('#slider_baths').slider('option', 'range', false);
  12.     }
  13. });
Unfortunately, changing the range option does not correct the positional anchoring for the fill bar, so it is the correct size for the range option specified but it is still anchored to the wrong side of the slider, making it look like it's filling the inverse of the slider's current position.

If I am misunderstanding what is happening with this bug, please feel free to let me know and I'll happily change my code as I would love to use this functionality.  Thanks!