What is correct user expectation regarding drag and move?












2














I have the following note taking app - https://wenote.jstock.co



I have some question, regarding user expectation regarding drag and move.



Say, you have the following card position.



[1] [2]
[3] [4]


when you move card 1 to card 4 position



enter image description here



Should they become (Card 1 and card 4 are being swapped. Only position of card 1 and card 4 affected.)



[4] [2]
[3] [1]


enter image description here



Or, the entire cards position are being shuffled (The entire list of cards are being shifted forward, to give space to the moved card. All cards position are affected.)



[2] [3]
[4] [1]


enter image description here



So, I'm some how confused here. What is the correct behavior when coming to drag n move for the above case?




  1. Card 1 and card 4 are being swapped. Only position of card 1 and card 4 affected.

  2. The entire list of cards are being shifted forward, to give space to the moved card. All cards position are affected.


For me, the 1st approach has a more "Direct intuitive". But, I notice that some popular note taking app like Google Keep, Zoho Notebook are using 2nd approach.










share|improve this question






















  • Is there a reason why the cards are arranged in a grid? If they represent a list they should be arranged as such.
    – Roman Reiner
    18 hours ago
















2














I have the following note taking app - https://wenote.jstock.co



I have some question, regarding user expectation regarding drag and move.



Say, you have the following card position.



[1] [2]
[3] [4]


when you move card 1 to card 4 position



enter image description here



Should they become (Card 1 and card 4 are being swapped. Only position of card 1 and card 4 affected.)



[4] [2]
[3] [1]


enter image description here



Or, the entire cards position are being shuffled (The entire list of cards are being shifted forward, to give space to the moved card. All cards position are affected.)



[2] [3]
[4] [1]


enter image description here



So, I'm some how confused here. What is the correct behavior when coming to drag n move for the above case?




  1. Card 1 and card 4 are being swapped. Only position of card 1 and card 4 affected.

  2. The entire list of cards are being shifted forward, to give space to the moved card. All cards position are affected.


For me, the 1st approach has a more "Direct intuitive". But, I notice that some popular note taking app like Google Keep, Zoho Notebook are using 2nd approach.










share|improve this question






















  • Is there a reason why the cards are arranged in a grid? If they represent a list they should be arranged as such.
    – Roman Reiner
    18 hours ago














2












2








2


2





I have the following note taking app - https://wenote.jstock.co



I have some question, regarding user expectation regarding drag and move.



Say, you have the following card position.



[1] [2]
[3] [4]


when you move card 1 to card 4 position



enter image description here



Should they become (Card 1 and card 4 are being swapped. Only position of card 1 and card 4 affected.)



[4] [2]
[3] [1]


enter image description here



Or, the entire cards position are being shuffled (The entire list of cards are being shifted forward, to give space to the moved card. All cards position are affected.)



[2] [3]
[4] [1]


enter image description here



So, I'm some how confused here. What is the correct behavior when coming to drag n move for the above case?




  1. Card 1 and card 4 are being swapped. Only position of card 1 and card 4 affected.

  2. The entire list of cards are being shifted forward, to give space to the moved card. All cards position are affected.


For me, the 1st approach has a more "Direct intuitive". But, I notice that some popular note taking app like Google Keep, Zoho Notebook are using 2nd approach.










share|improve this question













I have the following note taking app - https://wenote.jstock.co



I have some question, regarding user expectation regarding drag and move.



Say, you have the following card position.



[1] [2]
[3] [4]


when you move card 1 to card 4 position



enter image description here



Should they become (Card 1 and card 4 are being swapped. Only position of card 1 and card 4 affected.)



[4] [2]
[3] [1]


enter image description here



Or, the entire cards position are being shuffled (The entire list of cards are being shifted forward, to give space to the moved card. All cards position are affected.)



[2] [3]
[4] [1]


enter image description here



So, I'm some how confused here. What is the correct behavior when coming to drag n move for the above case?




  1. Card 1 and card 4 are being swapped. Only position of card 1 and card 4 affected.

  2. The entire list of cards are being shifted forward, to give space to the moved card. All cards position are affected.


For me, the 1st approach has a more "Direct intuitive". But, I notice that some popular note taking app like Google Keep, Zoho Notebook are using 2nd approach.







drag-n-drop






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Dec 27 at 15:33









Cheok Yan Cheng

6782812




6782812












  • Is there a reason why the cards are arranged in a grid? If they represent a list they should be arranged as such.
    – Roman Reiner
    18 hours ago


















  • Is there a reason why the cards are arranged in a grid? If they represent a list they should be arranged as such.
    – Roman Reiner
    18 hours ago
















Is there a reason why the cards are arranged in a grid? If they represent a list they should be arranged as such.
– Roman Reiner
18 hours ago




Is there a reason why the cards are arranged in a grid? If they represent a list they should be arranged as such.
– Roman Reiner
18 hours ago










3 Answers
3






active

oldest

votes


















4














User expectation for drag and move can depend on the existing mental models and the kind of affordance provided in the UI. The correctness depends on how well the application interface solves the Use case --> UI pattern --> Affordance combination.



Pattern 1:



Commonly known as Swappable. In this pattern, when a card is dragged onto another card, the other card doesn't change its position until the user releases the drag. Usually the other card is highlighted visually to indicate that a change is going to happen. This pattern is more common in games.



Swappable UI pattern



Example for Swappable


Pattern 2:



Commonly known as Sortable. In this pattern, when a card is dragged onto another card, the other cards shift positions to give space for the change. Here the visual feedback to the user is immediate. This pattern is more common in apps where the cards arrangement can be customized.



Sortable UI pattern



Example for Sortable





Why Sorting is the more common approach for rearranging



Applications provide the feature to rearrange so that users can arrange content in a way more meaningful for them. If we take the following example of a list of cards:



[1] [2] [3] [4] [5] [6]



To get the result [2] [3] [4] [5] [6] [1] using 1) Swapping will take a lot of combinations whereas 2) Sorting happens in a single go.



To get the result [6] [2] [3] [4] [5] [1] using 1) Swapping will happen in a single attempt and 2) Sorting will happen in two attempts.



Using Sorting to swap items can always happen with no more than two attempts. That's why Sorting is the more efficient approach and found in most of the apps like the examples mentioned in the question.






share|improve this answer























  • This makes sense based on how I think I'd personally use the app. If I'm swapping stuff, "games" mostly come to mind (obviously this is just my initial thought, not a universal truth at all) - something where the "correct" order should take some thought/effort. Here, I'd expect that notes to be somewhat purposely ordered (notes created first remain closer to the top unless deliberately moved down).
    – Broots Waymb
    Dec 27 at 21:58










  • @BrootsWaymb Yes. It depends on the context. OP asked about correct user "expectation" and that correctness depends on the combination of Use case --> Pattern --> Affordance. There is no one right answer. But sorting is the efficient one if rearranging cards is the use case.
    – Anvesh Dunna
    Dec 28 at 5:38



















1














Should be the second (shift) approach. By dragging Card 1 to Position 4, you are saying" I want Card 1 to be in Position 4". The action never states "I want Card 4 in Position 1".



Another way safe approach is using commonly known patterns: What is the most common interface using this pattern? Smartphone home screens. In both iPhone and Android, users reorganize app icons based on the 2nd approach. Therefore they would expect this same behavior to translate into other drag and drop interfaces.






share|improve this answer





























    0














    I tried this in your app. Your app lets users create notes and puts the new notes at the top of a list. The fact that it's a list is key. Dragging and dropping notes in the list is to change the position of that note in the list of notes.



    The card being moved should only change its position in the list, not swap positions with another card. Lists should maintain their order.



    Drag and drop in lists is positional, the user is changing the item's position in the list, not swapping positions. The item is being dropped in a position in-between items, not on items. That's why all that effort is spent creating interaction animations showing users the item is changing position in the list, not swapping positions. Both examples from Google have this animation.



    Here's one example from Material Design



    enter image description here



    Lists can rearrange neighboring items to fit on the screen visually, but the list is not resorted. Google does this with lists of different-sized cards.



    enter image description here






    share|improve this answer























      Your Answer








      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "102"
      };
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function() {
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled) {
      StackExchange.using("snippets", function() {
      createEditor();
      });
      }
      else {
      createEditor();
      }
      });

      function createEditor() {
      StackExchange.prepareEditor({
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: false,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      },
      noCode: true, onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fux.stackexchange.com%2fquestions%2f122895%2fwhat-is-correct-user-expectation-regarding-drag-and-move%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      4














      User expectation for drag and move can depend on the existing mental models and the kind of affordance provided in the UI. The correctness depends on how well the application interface solves the Use case --> UI pattern --> Affordance combination.



      Pattern 1:



      Commonly known as Swappable. In this pattern, when a card is dragged onto another card, the other card doesn't change its position until the user releases the drag. Usually the other card is highlighted visually to indicate that a change is going to happen. This pattern is more common in games.



      Swappable UI pattern



      Example for Swappable


      Pattern 2:



      Commonly known as Sortable. In this pattern, when a card is dragged onto another card, the other cards shift positions to give space for the change. Here the visual feedback to the user is immediate. This pattern is more common in apps where the cards arrangement can be customized.



      Sortable UI pattern



      Example for Sortable





      Why Sorting is the more common approach for rearranging



      Applications provide the feature to rearrange so that users can arrange content in a way more meaningful for them. If we take the following example of a list of cards:



      [1] [2] [3] [4] [5] [6]



      To get the result [2] [3] [4] [5] [6] [1] using 1) Swapping will take a lot of combinations whereas 2) Sorting happens in a single go.



      To get the result [6] [2] [3] [4] [5] [1] using 1) Swapping will happen in a single attempt and 2) Sorting will happen in two attempts.



      Using Sorting to swap items can always happen with no more than two attempts. That's why Sorting is the more efficient approach and found in most of the apps like the examples mentioned in the question.






      share|improve this answer























      • This makes sense based on how I think I'd personally use the app. If I'm swapping stuff, "games" mostly come to mind (obviously this is just my initial thought, not a universal truth at all) - something where the "correct" order should take some thought/effort. Here, I'd expect that notes to be somewhat purposely ordered (notes created first remain closer to the top unless deliberately moved down).
        – Broots Waymb
        Dec 27 at 21:58










      • @BrootsWaymb Yes. It depends on the context. OP asked about correct user "expectation" and that correctness depends on the combination of Use case --> Pattern --> Affordance. There is no one right answer. But sorting is the efficient one if rearranging cards is the use case.
        – Anvesh Dunna
        Dec 28 at 5:38
















      4














      User expectation for drag and move can depend on the existing mental models and the kind of affordance provided in the UI. The correctness depends on how well the application interface solves the Use case --> UI pattern --> Affordance combination.



      Pattern 1:



      Commonly known as Swappable. In this pattern, when a card is dragged onto another card, the other card doesn't change its position until the user releases the drag. Usually the other card is highlighted visually to indicate that a change is going to happen. This pattern is more common in games.



      Swappable UI pattern



      Example for Swappable


      Pattern 2:



      Commonly known as Sortable. In this pattern, when a card is dragged onto another card, the other cards shift positions to give space for the change. Here the visual feedback to the user is immediate. This pattern is more common in apps where the cards arrangement can be customized.



      Sortable UI pattern



      Example for Sortable





      Why Sorting is the more common approach for rearranging



      Applications provide the feature to rearrange so that users can arrange content in a way more meaningful for them. If we take the following example of a list of cards:



      [1] [2] [3] [4] [5] [6]



      To get the result [2] [3] [4] [5] [6] [1] using 1) Swapping will take a lot of combinations whereas 2) Sorting happens in a single go.



      To get the result [6] [2] [3] [4] [5] [1] using 1) Swapping will happen in a single attempt and 2) Sorting will happen in two attempts.



      Using Sorting to swap items can always happen with no more than two attempts. That's why Sorting is the more efficient approach and found in most of the apps like the examples mentioned in the question.






      share|improve this answer























      • This makes sense based on how I think I'd personally use the app. If I'm swapping stuff, "games" mostly come to mind (obviously this is just my initial thought, not a universal truth at all) - something where the "correct" order should take some thought/effort. Here, I'd expect that notes to be somewhat purposely ordered (notes created first remain closer to the top unless deliberately moved down).
        – Broots Waymb
        Dec 27 at 21:58










      • @BrootsWaymb Yes. It depends on the context. OP asked about correct user "expectation" and that correctness depends on the combination of Use case --> Pattern --> Affordance. There is no one right answer. But sorting is the efficient one if rearranging cards is the use case.
        – Anvesh Dunna
        Dec 28 at 5:38














      4












      4








      4






      User expectation for drag and move can depend on the existing mental models and the kind of affordance provided in the UI. The correctness depends on how well the application interface solves the Use case --> UI pattern --> Affordance combination.



      Pattern 1:



      Commonly known as Swappable. In this pattern, when a card is dragged onto another card, the other card doesn't change its position until the user releases the drag. Usually the other card is highlighted visually to indicate that a change is going to happen. This pattern is more common in games.



      Swappable UI pattern



      Example for Swappable


      Pattern 2:



      Commonly known as Sortable. In this pattern, when a card is dragged onto another card, the other cards shift positions to give space for the change. Here the visual feedback to the user is immediate. This pattern is more common in apps where the cards arrangement can be customized.



      Sortable UI pattern



      Example for Sortable





      Why Sorting is the more common approach for rearranging



      Applications provide the feature to rearrange so that users can arrange content in a way more meaningful for them. If we take the following example of a list of cards:



      [1] [2] [3] [4] [5] [6]



      To get the result [2] [3] [4] [5] [6] [1] using 1) Swapping will take a lot of combinations whereas 2) Sorting happens in a single go.



      To get the result [6] [2] [3] [4] [5] [1] using 1) Swapping will happen in a single attempt and 2) Sorting will happen in two attempts.



      Using Sorting to swap items can always happen with no more than two attempts. That's why Sorting is the more efficient approach and found in most of the apps like the examples mentioned in the question.






      share|improve this answer














      User expectation for drag and move can depend on the existing mental models and the kind of affordance provided in the UI. The correctness depends on how well the application interface solves the Use case --> UI pattern --> Affordance combination.



      Pattern 1:



      Commonly known as Swappable. In this pattern, when a card is dragged onto another card, the other card doesn't change its position until the user releases the drag. Usually the other card is highlighted visually to indicate that a change is going to happen. This pattern is more common in games.



      Swappable UI pattern



      Example for Swappable


      Pattern 2:



      Commonly known as Sortable. In this pattern, when a card is dragged onto another card, the other cards shift positions to give space for the change. Here the visual feedback to the user is immediate. This pattern is more common in apps where the cards arrangement can be customized.



      Sortable UI pattern



      Example for Sortable





      Why Sorting is the more common approach for rearranging



      Applications provide the feature to rearrange so that users can arrange content in a way more meaningful for them. If we take the following example of a list of cards:



      [1] [2] [3] [4] [5] [6]



      To get the result [2] [3] [4] [5] [6] [1] using 1) Swapping will take a lot of combinations whereas 2) Sorting happens in a single go.



      To get the result [6] [2] [3] [4] [5] [1] using 1) Swapping will happen in a single attempt and 2) Sorting will happen in two attempts.



      Using Sorting to swap items can always happen with no more than two attempts. That's why Sorting is the more efficient approach and found in most of the apps like the examples mentioned in the question.







      share|improve this answer














      share|improve this answer



      share|improve this answer








      edited Dec 28 at 6:34

























      answered Dec 27 at 19:56









      Anvesh Dunna

      12115




      12115












      • This makes sense based on how I think I'd personally use the app. If I'm swapping stuff, "games" mostly come to mind (obviously this is just my initial thought, not a universal truth at all) - something where the "correct" order should take some thought/effort. Here, I'd expect that notes to be somewhat purposely ordered (notes created first remain closer to the top unless deliberately moved down).
        – Broots Waymb
        Dec 27 at 21:58










      • @BrootsWaymb Yes. It depends on the context. OP asked about correct user "expectation" and that correctness depends on the combination of Use case --> Pattern --> Affordance. There is no one right answer. But sorting is the efficient one if rearranging cards is the use case.
        – Anvesh Dunna
        Dec 28 at 5:38


















      • This makes sense based on how I think I'd personally use the app. If I'm swapping stuff, "games" mostly come to mind (obviously this is just my initial thought, not a universal truth at all) - something where the "correct" order should take some thought/effort. Here, I'd expect that notes to be somewhat purposely ordered (notes created first remain closer to the top unless deliberately moved down).
        – Broots Waymb
        Dec 27 at 21:58










      • @BrootsWaymb Yes. It depends on the context. OP asked about correct user "expectation" and that correctness depends on the combination of Use case --> Pattern --> Affordance. There is no one right answer. But sorting is the efficient one if rearranging cards is the use case.
        – Anvesh Dunna
        Dec 28 at 5:38
















      This makes sense based on how I think I'd personally use the app. If I'm swapping stuff, "games" mostly come to mind (obviously this is just my initial thought, not a universal truth at all) - something where the "correct" order should take some thought/effort. Here, I'd expect that notes to be somewhat purposely ordered (notes created first remain closer to the top unless deliberately moved down).
      – Broots Waymb
      Dec 27 at 21:58




      This makes sense based on how I think I'd personally use the app. If I'm swapping stuff, "games" mostly come to mind (obviously this is just my initial thought, not a universal truth at all) - something where the "correct" order should take some thought/effort. Here, I'd expect that notes to be somewhat purposely ordered (notes created first remain closer to the top unless deliberately moved down).
      – Broots Waymb
      Dec 27 at 21:58












      @BrootsWaymb Yes. It depends on the context. OP asked about correct user "expectation" and that correctness depends on the combination of Use case --> Pattern --> Affordance. There is no one right answer. But sorting is the efficient one if rearranging cards is the use case.
      – Anvesh Dunna
      Dec 28 at 5:38




      @BrootsWaymb Yes. It depends on the context. OP asked about correct user "expectation" and that correctness depends on the combination of Use case --> Pattern --> Affordance. There is no one right answer. But sorting is the efficient one if rearranging cards is the use case.
      – Anvesh Dunna
      Dec 28 at 5:38













      1














      Should be the second (shift) approach. By dragging Card 1 to Position 4, you are saying" I want Card 1 to be in Position 4". The action never states "I want Card 4 in Position 1".



      Another way safe approach is using commonly known patterns: What is the most common interface using this pattern? Smartphone home screens. In both iPhone and Android, users reorganize app icons based on the 2nd approach. Therefore they would expect this same behavior to translate into other drag and drop interfaces.






      share|improve this answer


























        1














        Should be the second (shift) approach. By dragging Card 1 to Position 4, you are saying" I want Card 1 to be in Position 4". The action never states "I want Card 4 in Position 1".



        Another way safe approach is using commonly known patterns: What is the most common interface using this pattern? Smartphone home screens. In both iPhone and Android, users reorganize app icons based on the 2nd approach. Therefore they would expect this same behavior to translate into other drag and drop interfaces.






        share|improve this answer
























          1












          1








          1






          Should be the second (shift) approach. By dragging Card 1 to Position 4, you are saying" I want Card 1 to be in Position 4". The action never states "I want Card 4 in Position 1".



          Another way safe approach is using commonly known patterns: What is the most common interface using this pattern? Smartphone home screens. In both iPhone and Android, users reorganize app icons based on the 2nd approach. Therefore they would expect this same behavior to translate into other drag and drop interfaces.






          share|improve this answer












          Should be the second (shift) approach. By dragging Card 1 to Position 4, you are saying" I want Card 1 to be in Position 4". The action never states "I want Card 4 in Position 1".



          Another way safe approach is using commonly known patterns: What is the most common interface using this pattern? Smartphone home screens. In both iPhone and Android, users reorganize app icons based on the 2nd approach. Therefore they would expect this same behavior to translate into other drag and drop interfaces.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Dec 27 at 19:19









          Nicolas Hung

          1,364412




          1,364412























              0














              I tried this in your app. Your app lets users create notes and puts the new notes at the top of a list. The fact that it's a list is key. Dragging and dropping notes in the list is to change the position of that note in the list of notes.



              The card being moved should only change its position in the list, not swap positions with another card. Lists should maintain their order.



              Drag and drop in lists is positional, the user is changing the item's position in the list, not swapping positions. The item is being dropped in a position in-between items, not on items. That's why all that effort is spent creating interaction animations showing users the item is changing position in the list, not swapping positions. Both examples from Google have this animation.



              Here's one example from Material Design



              enter image description here



              Lists can rearrange neighboring items to fit on the screen visually, but the list is not resorted. Google does this with lists of different-sized cards.



              enter image description here






              share|improve this answer




























                0














                I tried this in your app. Your app lets users create notes and puts the new notes at the top of a list. The fact that it's a list is key. Dragging and dropping notes in the list is to change the position of that note in the list of notes.



                The card being moved should only change its position in the list, not swap positions with another card. Lists should maintain their order.



                Drag and drop in lists is positional, the user is changing the item's position in the list, not swapping positions. The item is being dropped in a position in-between items, not on items. That's why all that effort is spent creating interaction animations showing users the item is changing position in the list, not swapping positions. Both examples from Google have this animation.



                Here's one example from Material Design



                enter image description here



                Lists can rearrange neighboring items to fit on the screen visually, but the list is not resorted. Google does this with lists of different-sized cards.



                enter image description here






                share|improve this answer


























                  0












                  0








                  0






                  I tried this in your app. Your app lets users create notes and puts the new notes at the top of a list. The fact that it's a list is key. Dragging and dropping notes in the list is to change the position of that note in the list of notes.



                  The card being moved should only change its position in the list, not swap positions with another card. Lists should maintain their order.



                  Drag and drop in lists is positional, the user is changing the item's position in the list, not swapping positions. The item is being dropped in a position in-between items, not on items. That's why all that effort is spent creating interaction animations showing users the item is changing position in the list, not swapping positions. Both examples from Google have this animation.



                  Here's one example from Material Design



                  enter image description here



                  Lists can rearrange neighboring items to fit on the screen visually, but the list is not resorted. Google does this with lists of different-sized cards.



                  enter image description here






                  share|improve this answer














                  I tried this in your app. Your app lets users create notes and puts the new notes at the top of a list. The fact that it's a list is key. Dragging and dropping notes in the list is to change the position of that note in the list of notes.



                  The card being moved should only change its position in the list, not swap positions with another card. Lists should maintain their order.



                  Drag and drop in lists is positional, the user is changing the item's position in the list, not swapping positions. The item is being dropped in a position in-between items, not on items. That's why all that effort is spent creating interaction animations showing users the item is changing position in the list, not swapping positions. Both examples from Google have this animation.



                  Here's one example from Material Design



                  enter image description here



                  Lists can rearrange neighboring items to fit on the screen visually, but the list is not resorted. Google does this with lists of different-sized cards.



                  enter image description here







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited yesterday

























                  answered 2 days ago









                  moot

                  3,8631811




                  3,8631811






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to User Experience Stack Exchange!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.





                      Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                      Please pay close attention to the following guidance:


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fux.stackexchange.com%2fquestions%2f122895%2fwhat-is-correct-user-expectation-regarding-drag-and-move%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Human spaceflight

                      Can not write log (Is /dev/pts mounted?) - openpty in Ubuntu-on-Windows?

                      File:DeusFollowingSea.jpg