diff --git a/includes/Entity/WorkflowState.php b/includes/Entity/WorkflowState.php
index 3b01bc1..e31fcc6 100644
--- a/includes/Entity/WorkflowState.php
+++ b/includes/Entity/WorkflowState.php
@@ -300,7 +300,7 @@ class WorkflowState extends Entity {
     $options = $this->getOptions($entity_type, $entity, $field_name, $user, $force);
     $count = count($options);
     // The easiest case first: more then one option: always show form.
-    if ($count > 1) {
+    if ($count >= 1) {
       return TRUE;
     }
     // #2226451: Even in Creation state, we must have 2 visible states to show the widget.
diff --git a/workflow.module b/workflow.module
index 07ddc5c..b0f538d 100644
--- a/workflow.module
+++ b/workflow.module
@@ -551,7 +551,7 @@ function workflow_form_alter(&$form, &$form_state, $form_id) {
 
   // Quit if there are no Workflow Action buttons.
   // (If user has only 1 workflow option, there are no Action buttons.)
-  if (count($workflow_form['workflow_sid']['#options']) <= 1) {
+  if (count($workflow_form['workflow_sid']['#options']) < 1) {
     return;
   }
 
