Preview shows different content in thumbnail drawer and main windows ?

hi,
i've got a few pictures that were apparently cropped - Preview shows the cropped version in the main viewer window, but shows the pre-cropped version in the thumbnail drawer.
anyone know why this is? and if there is any way to "revert" the cropped version to the uncropped one so the main window matches what shows up in the thumbnail drawer?
thanks,
andrew

Ok, I've checked the site linked here with Safari.
It works normally, so I'm thinking it's a Chrome problem.

Similar Messages

  • Show different content after every 5th web app listing

    I have a web app that list products. I would like to show different content after 5th item from the web app.
    So, it might look something like this.
    <div class="wrapper article-single-wrapper">
    Web app product 1
    Web app product 2
    Web app product 3
    Web app product 4
    Web app product 5
    </div>
    <div class="wrapper sponsored-post-list-wrapper">
    Advert
    </div>
    <div class="wrapper article-single-wrapper">
    Web app product 6
    Web app product 7
    Web app product 8
    Web app product 9
    Web app product 10
    </div>

    You can only do that with javascript, Say you had a hidden contentholder with the add on it. You could use jQuery for example, store the .html() into a variable and then every nth-item (4th) you could .insertAfter()

  • My I-Pad screen is black, I tried to sync and restore I-Pad, it showes the contents on the computer and pulling out pictures and other files, but screen is black. what can I do?

    My I-Pad screen is black!! I tried to sync and restore I-Pad, it showes the contents on the computer and pulling out pictures and other files, but screen is black. I don't know what happened! what can I do?

    I have this problem as well...however, resetting/restoring did not take place when I followed the same instructions but got nothing on the screen.  Thanks in advance.

  • TS4050 I am running Windows 8. Although my contacts and notes from my Ipod touch show up on icloud my calendar entries do not show up even though they do show up in my Google calendar and my windows phone calendar. Any suggestions not already covered?

    I am running Windows 8. Although my contacts and notes from my Ipod touch  show up on icloud my calendar entries do not show up even though they do show up in my Google calendar and my windows phone calendar. Any suggestions not already covered in trouble shooting articles?

    As I mentioned earlier, you have to decide which calendar you want to use.  You can either use Google or iCloud, but not both.
    If you want to use your iCloud calendar, go to Settings>Mail,Contacts,Calendars>Default Account (in the Calendar section) and set this to your iCloud calendar.  After doing so, all new events you add to your calendar will be added by default to your iCloud calendar, and as a result, will appear on icloud.com and your computer (if it is syncing calendars with your iCloud account).
    If, on the other hand, you want to use your Google calendar (as it sounds like you are doing with your iPod), simply add the same Google calendar to your phone and your computer.

  • ITunes Match showing different content on different devices

    I have recently signed up for itunes match and have connected three devices as follows:
    Windows 7 x64 PC running latest itunes 10.5.2.11
    Apple ipad version 1 64gig 3G with iOS 5.01
    iPhone 3GS 16gig with iOS 5.01
    I have matched 4900+ songs from my PC iTunes library with iCloud. I have recently removed all my old music files and re-downloaded the iTunes *.m4a version of every matched song.
    I also have uploaded 1000+ songs that were not matched. I have no errors at all... so PC iTunes software appear to be working okay.
    My Ipad and iPhone have also been switched over to iTunes Match and I have therefore deleted all 'local' songs on both devices... I then switched on the 'SHOW ALL MUSIC' in the settings of the music app to show the icloud list... but it is different on both my ipad and iphone compared to the PC and compared to each other.
    My PC has a total of 5992 music files either matched or uploaded to iCloud
    My Ipad shows 5804 music files on icloud
    My iPhone has 3632 music files on icloud
    Loads of space is confirmed as being available on both devices
    I have tried rebooting both ipad and iphone I have switched off/on 'SHOW ALL FILES' in settings to reveal that there are no songs on either the iPad or iPhone so only seeing view of songs on iCloud.
    I have turned off/on icloud on both devices and still same file totals.
    I have even updated itunes match several times from my PC via itunes store menu.
    I have switch on/off itunes Match on my PC... I have even backed up my library deleted all the music both locally and on Icloud and then re-imported and rematched/uploaded all the files again without any errors but both my iPad and iPhone fail to see all files on the icloud.
    I have even waited quite some hours to see if they eventually will update but no luck.
    I have submitted feedback to apple as a bug report, but if anyone has any suggestions that I can try in the meantime to fix this 'out of sync' issue.
    Also on the PC in itunes preferences. I have reset cache and sync history in iTunes but still no joy - it appears that the iphone and ipad are not receiving the current version of my icloud content?

    Same problem here. I dont find all songs back on my iphone although i have activated all required items in itunes and on the iphone.
    I got a rather big library (16k songs), not everything matched BUT for example i only see Artist starting with "A"... all the other ones are not on my iphone.. very strange.
    - Same story under my songs.
    - All my playlist on the other hand are shown..
    So it would be nice to find out what to do about this...

  • Get the selected or active tab on a tabstrip to show different content

    Hi All,
    I have two tabs (TAB1 and TAB2) on a tabstrip. And on each of these tabs I have a table. Both tables are binded to the same context node.
    The property selectedTab of the Tabstrip is binded to an attribute "TAB" of a context node "TABSTRIP".
    I defined a supply function on this context node "TABSTRIP" in order to show the TAB1 by the first building up the view.
    METHOD supply_tabstrip .
    * local structure for the activ TAB
      DATA: stru_tabstrip TYPE if_componentcontroller=>element_tabstrip.
      CLEAR stru_tabstrip.
    * set the default-value
    * --> This is valid untill the user choose another Tab
      MOVE 'TAB1' TO stru_tabstrip-tab.
    * bind the filled structure to the context
      node->bind_structure(
        new_item             = stru_tabstrip
        set_initial_elements = abap_true ).
    ENDMETHOD.
    I also definded a supply function on the context node of the table (which is mentioned above) to fill it with content.
    Now i need to define a query to fill the table with two different content and for this I need to know which tab is selected by the user. How can i find which tab is selected or which tab is active?
    Thank you for any help
    Best regards
    Haleh

    Hi,
    I have a  context attrinbute SELECTED to which the SelectedTab property of tabstrip is bound.
    Implement action onSelect for Tabstrip -  Use this code snippet  -
    ***Variables
      DATA:
        lv_select_tab type string.          "Selected tab value
    ***Structure and internal table for the Events and messages
      DATA:
        lt_events type WDR_EVENT_PARAMETER_LIST,
        ls_events type WDR_EVENT_PARAMETER.
    ***Field symbols
      field-symbols: <fs_value> type any.   "Attribute value in events table
    ***Move the event table to lt_events
      lt_events = wdevent->parameters.
    *"Set to 'TAB' in lt_events
      read table  lt_events into ls_events with key name = wd_assist->GC_TAB.  "TAB
      if sy-subrc eq 0.
        assign ls_events-value->* to <fs_value>.
        if sy-subrc eq 0.
          lv_select_tab = <fs_value>.
        endif.                 "IF sy-subrc eq 0.
      endif.                 "IF sy-subrc eq 0.
    ***Set the selected tab value
      CALL METHOD WD_CONTEXT->SET_ATTRIBUTE
        EXPORTING
          VALUE = lv_select_tab
          NAME  = wd_assist->GC_SELECT_TAB.  "Set the selected tab Id "SELECTED
    **Call additional data if tab selected
      if lv_select_tab eq 'TAB1'.
    */Have your code here......
    else
    endif.
    Regards,
    Lekha.

  • How do I do a split screen to show the contents of my Library and a playlist at the same time?

    I’m using iTunes 11.3.1 on a current generation Mac running OSX 10.9.4.
    I like to manually create playlists.  I want to be able to see the contents of a playlist and my library at the same time. Is there a way to do a split screen view in iTunes so the songs in my playlist show in one window and the library shows in another?

    See this thread -> https://discussions.apple.com/thread/5666364

  • ITunes shows different disk space during synchronisation and after completing synchronisation

    I have about 13'000 songs on my iMac (actual used hard disk space 107 GB) and i sync the music with my iPhone 5. I use the sync option «... convert titles larger than 128 kBit/s ...», so that there is enough space for all my songs on the iPhone. If i start the sync process, it says 13'000 songs, space needed 49 GB. After completet sync process, it shows 54 GB disk space used für the 13'000 songs!?!?! After a few minutes, there again, i get the right information about used disk space für music displayed, 49 GB. Anybody any idea what causes this effect? Thx for any idea.

    And here two screenshots of the inconsistent behaviour of used / free disk space:

  • Why the tree show different while i use XML and XMLList as the data provider

    Code is as follows:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:services="services.*" layout="vertical">
    <services:CommonSvc id="ws" NameSpace="ws.wsSysDict" creationComplete="ws.getXmlList()"/>
    <mx:Tree width="100%" height="100%" labelField="@Name" dataProvider="{ws.xml}" fontSize="18" showRoot="false"/>
    </mx:Application>
    Shown below:
    as you see above,the font show Incomplete, if i change the dataprovider as  follows:
    <mx:Tree width="100%" height="100%" labelField="@Name" dataProvider="{ws.xml.obj}" fontSize="18" showRoot="false" />
    it  show complete when i use xmllist as the tree's dataprovider
    why it show like that while i use the xml as the tree's dataprovider,hope anybody's helping

    XML is a single node, XMLList is multiple nodes.  ShowRoot will affect the
    display

  • ITunes not showing some content after I purchassed and downloaded the album

    I went and downloaded cant hold us by Macklemore and Ryan Lewis and I had a look in my library after I downloaded it and could not fid it so I went into finder to see if it was there and it was so I played it from there and it opened in iTunes then I searched the track after doing it thousends of times the album name came up so I clicked on it but it took me to nothing I am really ****** off

    Seems as if the index of the main music playlist isn't getting updated in some circumstances. Apparently the most effective voodoo is to obtain the current "Free Single of the Week". It may be that any new purchase causes ITunes to reindex itself properly but this one seems to work, and is free. Alternatively you could try closing iTunes, deleting the hidden file sentinel from within the main iTunes folder, and restarting. This should cause iTunes to run an integrity check on the database which will likely resolve any issues.
    tt2

  • Hi different vendor for goods supplier and main vendor

    There are two vendors one is main vendor and second vendor is goods supplier.How to use these two vendor when ordering material.
    Whether we have to create two purchase orders one for the main vendor and one for the goods supplier?
    What is process the process to be followed in this scenerio?
    and what are teh settings required?
    Thank you.

    the question is: do you really need to mention the good supplier in your PO?
    The partner role GS good supplier is used in European Trade reporting like INTRASTAT, because there you have to report the goods movement, dispatch and arrival country. The dispatch country is then determined based on GS partner and not from VN partner.
    if vendor is different from good supplier, then you need an extra vendor master for the good supplier,  then you need to allow this GS role in your partner schema.
    Then you need to maintain the GS partner in the vendor master partner view of your main vendor.
    From there is will default to your POs .

  • HT1937 iCal app showing different today's date to my main menu date?

    Whu my iCal today's date is not identical to the date displays on my main menu bar. It only happens today 29th Dec 2012.

    Today is not December 29th, why do you believe it is?

  • Mac, iPad and iPhone show different iCloud Drive content

    I'm getting mad about iCloud drive.
    For hours I try to get all my devices in sync. But they all show different content. In Finder I can see only 4 app folders containing the documents (actually pages, keynote, numbers and pdfexpert). Browsing the iCloud drive on the iPad for example using the pages app I can also see a GoodReader folder and some more. Some of them are empty folders (maybe empty folders are hidden on mac by default?) but some of them contain folders and files which obviously won't download to my Mac.
    There are also some folders related to apps I removed from all my devices. It's ok if these app's iCloud folders stay in the cloud if they contain any documents but they stay there even if they are empty and there seems to be no way to remove these folders manually (even the web interface of iCloud greys out the trash when such a folder is selected).
    When I use OS X Preferences to remove some old app's iCloud content I can do this for some of them but then (all of a sudden - can be after two of ten removals) the list on the left side shows only "Backups" (or sometimes "Backups" and an unspecific "Documents") and you have to close the Preferences and reopen it a little later to see the complete list again. And showing the app icons seems to be a problem too (including the iPad / iPhone preferences -> iCloud) - some of them are shown, for some of them there are only placeholders.
    Am I doing it wrong or are these common problems?

    Same problem here – specifically, the CONTENTS of "iCloud Drive" are different when accessed:
    A) in the Finder on Yosemite
    B) on the web at iCloud.com
    C) on an iOS device
    The MAJOR problem for me is that my Goodreader folder only shows up on the iOS device, making it impossible for me to access my Goodreader files. This is a huge issue for me as my workflow depends on having access to those files.
    In general, however, it's ridiculous that you can copy data to iCloud Drive on your iOS device and then you cannot read that data anywhere else.

  • Preview shows blank pages

    I've just received a 13 page pdf file. Opening it with Preview showed me 13 blank pages. Opening it with Acrobat showed me the pages as they are supposed to look. What's going on? Why can't Preview show the contents? (The file was created on a PC, if that's relevant, by scanning in the pages, but I don't know the procedure after that.)
    I'm using 10.3.9, all updates installed, on a G4/1.25 PowerBook.
    Susan K

    Hi Susan,
    I can't explain the anomaly, but I experience similar problems with Preview when I attempt to view PDF docs that are created by my company, and also by a friend who is a missionary in Cameroon Africa (who I presume is using a PC to create the PDF docs...). I'm guessing that the program that creates their PDFs is causing the 'headache' for our version of Preview...
    The PDFs created by my company will not be 'searchable', and most of the text of PDFs created by my friend will be unreadable by Preview.
    Of note, an associate who uses Tiger, does not seem to have the same problems with his version of Preview...
    Bob

  • Team Calendar shows empty content as iview

    Hi Guys,
    I am working on EP 7. When we click "Leave Request" under time management, the screen has a link for "Show Team Calendar", when we click on that, it will show a list of staffs and current month's days.
    But if we run the "Team Calendar" as an individual iview with the same user ID, it just shows no data, and it has a drop down list as "Directly Subordinate Employees/All Employees" which is not there inside "Leave Request".
    I know this 2 team calendar is of the same application "TeamView" from package sap.com/ess~lea, but why they shows different content, with the same user ID? Any configuration need to be done?
    Thanks with points
    Regards,
    Guo Feng

    No answer I closed it first

Maybe you are looking for