diff --git a/uc_product/uc_product.admin.inc b/uc_product/uc_product.admin.inc
index aa79347..7dfa06f 100644
--- a/uc_product/uc_product.admin.inc
+++ b/uc_product/uc_product.admin.inc
@@ -67,7 +67,7 @@ function uc_product_settings_form($form, &$form_state) {
   }
   else {
     // If we have widgets installed, add option to not use any of them
-    $options['none'] = "Don't use any image widgets.";
+    $options['none'] = t("Don't use any image widgets.");
   }
 
   $form['product']['uc_product_image_widget'] = array(
diff --git a/uc_product/uc_product.module b/uc_product/uc_product.module
index 2b78f57..8dbcf8b 100644
--- a/uc_product/uc_product.module
+++ b/uc_product/uc_product.module
@@ -1437,7 +1437,10 @@ function uc_product_get_image_widget() {
     // Find widget preference, if any.
     $widget_name = variable_get('uc_product_image_widget', NULL);
 
-    if ($widget_name != NULL) {
+    if ($widget_name == 'none') {
+      // Don't use any image widgets.
+    }
+    elseif ($widget_name != NULL) {
       // Widget to use has been set in admin menu.
       $image_widget = $image_widgets[$widget_name];
     }
